diff options
| author | Bob McWhirter <[email protected]> | 2021-08-02 13:29:06 -0400 |
|---|---|---|
| committer | Bob McWhirter <[email protected]> | 2021-08-02 13:29:06 -0400 |
| commit | 63b32b39e10fb0677d0a980930dc83ee792cd5ca (patch) | |
| tree | 3562c82c26c339d6f96c3ec59b98a01f8083de64 | |
| parent | 5f9447abb4463a9659a184b3b62bc2da3a696096 (diff) | |
Use an em bikeshed instead of an underscore bikeshed.
| -rw-r--r-- | embassy-stm32/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32f4/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32h7/Cargo.toml | 2 | ||||
| -rw-r--r-- | stm32-metapac-gen/src/assets/build.rs | 12 | ||||
| -rw-r--r-- | stm32-metapac/Cargo.toml | 2 | ||||
| -rw-r--r-- | stm32-metapac/build.rs | 2 |
6 files changed, 6 insertions, 16 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 65592b1d9..6f8691c3e 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -42,7 +42,7 @@ defmt-warn = [ ] | |||
| 42 | defmt-error = [ ] | 42 | defmt-error = [ ] |
| 43 | sdmmc-rs = ["embedded-sdmmc"] | 43 | sdmmc-rs = ["embedded-sdmmc"] |
| 44 | net = ["embassy-net", "vcell"] | 44 | net = ["embassy-net", "vcell"] |
| 45 | memory_x = ["stm32-metapac/memory_x"] | 45 | memory-x = ["stm32-metapac/memory-x"] |
| 46 | 46 | ||
| 47 | # Reexport stm32-metapac at `embassy_stm32::pac`. | 47 | # Reexport stm32-metapac at `embassy_stm32::pac`. |
| 48 | # This is unstable because semver-minor (non-breaking) releases of embassy-stm32 may major-bump (breaking) the stm32-metapac version. | 48 | # This is unstable because semver-minor (non-breaking) releases of embassy-stm32 may major-bump (breaking) the stm32-metapac version. |
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index eb88ecc1c..84b1e30ee 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml | |||
| @@ -19,7 +19,7 @@ defmt-error = [] | |||
| 19 | [dependencies] | 19 | [dependencies] |
| 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } | 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } |
| 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } | 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } |
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory_x"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory-x"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.0" |
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 081e45a69..8bc6781e0 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml | |||
| @@ -19,7 +19,7 @@ defmt-error = [] | |||
| 19 | [dependencies] | 19 | [dependencies] |
| 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } | 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } |
| 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } | 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } |
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32h743zi", "net", "memory_x"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32h743zi", "net", "memory-x"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } | 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } |
| 25 | stm32-metapac = { path = "../../stm32-metapac", features = ["stm32h743zi"] } | 25 | stm32-metapac = { path = "../../stm32-metapac", features = ["stm32h743zi"] } |
diff --git a/stm32-metapac-gen/src/assets/build.rs b/stm32-metapac-gen/src/assets/build.rs index 0fe7c65e9..4110fe485 100644 --- a/stm32-metapac-gen/src/assets/build.rs +++ b/stm32-metapac-gen/src/assets/build.rs | |||
| @@ -9,17 +9,7 @@ fn main() { | |||
| 9 | .unwrap() | 9 | .unwrap() |
| 10 | .to_ascii_lowercase(); | 10 | .to_ascii_lowercase(); |
| 11 | 11 | ||
| 12 | // Put `memory.x` in our output directory and ensure it's | 12 | #[cfg(feature = "memory-x")] |
| 13 | // on the linker search path. | ||
| 14 | let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap()); | ||
| 15 | //File::create(out.join("memory.x")) | ||
| 16 | //.unwrap() | ||
| 17 | //.write_all(include_bytes!("memory.x")) | ||
| 18 | //.unwrap(); | ||
| 19 | |||
| 20 | println!("HOWDY"); | ||
| 21 | |||
| 22 | #[cfg(feature = "memory_x")] | ||
| 23 | println!("cargo:rustc-link-search=src/chips/{}/memory_x/", _chip_name); | 13 | println!("cargo:rustc-link-search=src/chips/{}/memory_x/", _chip_name); |
| 24 | 14 | ||
| 25 | #[cfg(feature = "rt")] | 15 | #[cfg(feature = "rt")] |
diff --git a/stm32-metapac/Cargo.toml b/stm32-metapac/Cargo.toml index 692acd8a8..fabd95664 100644 --- a/stm32-metapac/Cargo.toml +++ b/stm32-metapac/Cargo.toml | |||
| @@ -17,7 +17,7 @@ regex = "1.5.4" | |||
| 17 | 17 | ||
| 18 | [features] | 18 | [features] |
| 19 | rt = ["cortex-m-rt/device"] | 19 | rt = ["cortex-m-rt/device"] |
| 20 | memory_x = [] | 20 | memory-x = [] |
| 21 | 21 | ||
| 22 | # BEGIN GENERATED FEATURES | 22 | # BEGIN GENERATED FEATURES |
| 23 | # Generated by gen_features.py. DO NOT EDIT. | 23 | # Generated by gen_features.py. DO NOT EDIT. |
diff --git a/stm32-metapac/build.rs b/stm32-metapac/build.rs index d922735a1..ca964c9ec 100644 --- a/stm32-metapac/build.rs +++ b/stm32-metapac/build.rs | |||
| @@ -28,7 +28,7 @@ fn main() { | |||
| 28 | chip_name.to_ascii_lowercase() | 28 | chip_name.to_ascii_lowercase() |
| 29 | ); | 29 | ); |
| 30 | 30 | ||
| 31 | #[cfg(feature = "memory_x")] | 31 | #[cfg(feature = "memory-x")] |
| 32 | println!( | 32 | println!( |
| 33 | "cargo:rustc-link-search={}/src/chips/{}/memory_x/", | 33 | "cargo:rustc-link-search={}/src/chips/{}/memory_x/", |
| 34 | out_dir.display(), | 34 | out_dir.display(), |
