diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-05-02 19:35:18 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-05-02 22:13:38 +0200 |
| commit | a85b34c1fec458f00c37db2f395345540d73d519 (patch) | |
| tree | 3b75faf5ec920c64baf1f0b6af2e26b39ef8c7af | |
| parent | 1078f6f4e7c8473013c46543663cb6ca6b0e0c3d (diff) | |
stm32/test: F1 no longer fits in RAM.
| -rw-r--r-- | tests/stm32/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stm32/build.rs b/tests/stm32/build.rs index 4c76a8eeb..7ae311778 100644 --- a/tests/stm32/build.rs +++ b/tests/stm32/build.rs | |||
| @@ -9,7 +9,7 @@ fn main() -> Result<(), Box<dyn Error>> { | |||
| 9 | println!("cargo:rustc-link-arg-bins=--nmagic"); | 9 | println!("cargo:rustc-link-arg-bins=--nmagic"); |
| 10 | 10 | ||
| 11 | // too little RAM to run from RAM. | 11 | // too little RAM to run from RAM. |
| 12 | if cfg!(any(feature = "stm32c031c6")) { | 12 | if cfg!(any(feature = "stm32f103c8", feature = "stm32c031c6")) { |
| 13 | println!("cargo:rustc-link-arg-bins=-Tlink.x"); | 13 | println!("cargo:rustc-link-arg-bins=-Tlink.x"); |
| 14 | println!("cargo:rerun-if-changed=link.x"); | 14 | println!("cargo:rerun-if-changed=link.x"); |
| 15 | } else { | 15 | } else { |
