diff options
| author | goueslati <[email protected]> | 2023-06-12 14:27:53 +0100 |
|---|---|---|
| committer | goueslati <[email protected]> | 2023-06-12 14:27:53 +0100 |
| commit | 2d89cfb18f00aefbfa108728dfea3398e80ea3e4 (patch) | |
| tree | 6485dacac7e61c4378ac522e709edb0a86bd7523 /embassy-cortex-m/Cargo.toml | |
| parent | 2dd5ce83ec0421564e85b667f5dabd592f313e5c (diff) | |
| parent | ab86b060500ceda1c80e39f35af69cb08a7b63a2 (diff) | |
fix merge conflict
Diffstat (limited to 'embassy-cortex-m/Cargo.toml')
| -rw-r--r-- | embassy-cortex-m/Cargo.toml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/embassy-cortex-m/Cargo.toml b/embassy-cortex-m/Cargo.toml deleted file mode 100644 index 70adda7df..000000000 --- a/embassy-cortex-m/Cargo.toml +++ /dev/null | |||
| @@ -1,45 +0,0 @@ | |||
| 1 | [package] | ||
| 2 | name = "embassy-cortex-m" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | license = "MIT OR Apache-2.0" | ||
| 6 | |||
| 7 | [package.metadata.embassy_docs] | ||
| 8 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-cortex-m-v$VERSION/embassy-cortex-m/src/" | ||
| 9 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-cortex-m/src/" | ||
| 10 | features = ["prio-bits-3"] | ||
| 11 | flavors = [ | ||
| 12 | { name = "thumbv6m-none-eabi", target = "thumbv6m-none-eabi", features = [] }, | ||
| 13 | { name = "thumbv7m-none-eabi", target = "thumbv7m-none-eabi", features = [] }, | ||
| 14 | { name = "thumbv7em-none-eabi", target = "thumbv7em-none-eabi", features = [] }, | ||
| 15 | { name = "thumbv7em-none-eabihf", target = "thumbv7em-none-eabihf", features = [] }, | ||
| 16 | { name = "thumbv8m.main-none-eabihf", target = "thumbv8m.main-none-eabihf", features = [] }, | ||
| 17 | ] | ||
| 18 | |||
| 19 | [features] | ||
| 20 | default = [] | ||
| 21 | |||
| 22 | # Define the number of NVIC priority bits. | ||
| 23 | prio-bits-0 = [] | ||
| 24 | prio-bits-1 = [] | ||
| 25 | prio-bits-2 = [] | ||
| 26 | prio-bits-3 = [] | ||
| 27 | prio-bits-4 = [] | ||
| 28 | prio-bits-5 = [] | ||
| 29 | prio-bits-6 = [] | ||
| 30 | prio-bits-7 = [] | ||
| 31 | prio-bits-8 = [] | ||
| 32 | |||
| 33 | [dependencies] | ||
| 34 | defmt = { version = "0.3", optional = true } | ||
| 35 | log = { version = "0.4.14", optional = true } | ||
| 36 | |||
| 37 | embassy-sync = { version = "0.2.0", path = "../embassy-sync" } | ||
| 38 | embassy-executor = { version = "0.2.0", path = "../embassy-executor"} | ||
| 39 | embassy-macros = { version = "0.2.0", path = "../embassy-macros"} | ||
| 40 | embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common"} | ||
| 41 | atomic-polyfill = "1.0.1" | ||
| 42 | critical-section = "1.1" | ||
| 43 | cfg-if = "1.0.0" | ||
| 44 | cortex-m = "0.7.6" | ||
| 45 | |||
