diff options
| author | i509VCB <[email protected]> | 2025-07-21 20:29:34 -0500 |
|---|---|---|
| committer | i509VCB <[email protected]> | 2025-07-22 11:25:45 -0500 |
| commit | 1d46f55bddf402c33143959e1ad26af59bb15855 (patch) | |
| tree | 2239a545303c4df4cfc1d9ff4aec7069e006babe /embassy-nxp/Cargo.toml | |
| parent | 908e016524e1802b736664d84ca2da6ea908444d (diff) | |
nxp: Add mimxrt1062 support
The examples in this case are designed for the IMXRT1060-EVK. The same chip is used in the Teensy 4.0/1, but that will probably get its own set of examples due to some differences such as the FCB.
Diffstat (limited to 'embassy-nxp/Cargo.toml')
| -rw-r--r-- | embassy-nxp/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml index 625906183..293791d34 100644 --- a/embassy-nxp/Cargo.toml +++ b/embassy-nxp/Cargo.toml | |||
| @@ -17,13 +17,13 @@ embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-util | |||
| 17 | 17 | ||
| 18 | ## Chip dependencies | 18 | ## Chip dependencies |
| 19 | lpc55-pac = { version = "0.5.0", optional = true } | 19 | lpc55-pac = { version = "0.5.0", optional = true } |
| 20 | nxp-pac = { version = "0.1.0", optional = true, git = "https://github.com/i509VCB/nxp-pac", rev = "1e010dbe75ab0e14dd908e4646391403414c8a8e" } | 20 | nxp-pac = { version = "0.1.0", optional = true, git = "https://github.com/i509VCB/nxp-pac", rev = "be4dd0936c20d5897364a381b1d95a99514c1e7e" } |
| 21 | 21 | ||
| 22 | imxrt-rt = { version = "0.1.7", optional = true, features = ["device"] } | 22 | imxrt-rt = { version = "0.1.7", optional = true, features = ["device"] } |
| 23 | 23 | ||
| 24 | [build-dependencies] | 24 | [build-dependencies] |
| 25 | cfg_aliases = "0.2.1" | 25 | cfg_aliases = "0.2.1" |
| 26 | nxp-pac = { version = "0.1.0", git = "https://github.com/i509VCB/nxp-pac", rev = "1e010dbe75ab0e14dd908e4646391403414c8a8e", features = ["metadata"], optional = true } | 26 | nxp-pac = { version = "0.1.0", git = "https://github.com/i509VCB/nxp-pac", rev = "be4dd0936c20d5897364a381b1d95a99514c1e7e", features = ["metadata"], optional = true } |
| 27 | proc-macro2 = "1.0.95" | 27 | proc-macro2 = "1.0.95" |
| 28 | quote = "1.0.15" | 28 | quote = "1.0.15" |
| 29 | 29 | ||
| @@ -58,3 +58,4 @@ _time_driver = ["dep:embassy-time-driver", "dep:embassy-time-queue-utils"] | |||
| 58 | #! ### Chip selection features | 58 | #! ### Chip selection features |
| 59 | lpc55 = ["dep:lpc55-pac"] | 59 | lpc55 = ["dep:lpc55-pac"] |
| 60 | mimxrt1011 = ["nxp-pac/mimxrt1011", "_rt1xxx", "dep:imxrt-rt"] | 60 | mimxrt1011 = ["nxp-pac/mimxrt1011", "_rt1xxx", "dep:imxrt-rt"] |
| 61 | mimxrt1062 = ["nxp-pac/mimxrt1062", "_rt1xxx", "dep:imxrt-rt"] | ||
