diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-06-12 21:39:39 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-06-12 21:39:39 +0200 |
| commit | 72029ca0c6407cff3aefb8c08e48d96adcbb57e0 (patch) | |
| tree | 40498c99c818c4d35838605d4df64ca6cb627878 /tests | |
| parent | 8b0cfde9a6c42ae45463eea42d4749bf919e3ffc (diff) | |
stm32: update stm32-metapac, fixes memory.x for many families.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/stm32/build.rs | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/stm32/build.rs b/tests/stm32/build.rs index 675115568..722671bf1 100644 --- a/tests/stm32/build.rs +++ b/tests/stm32/build.rs | |||
| @@ -10,14 +10,10 @@ fn main() -> Result<(), Box<dyn Error>> { | |||
| 10 | 10 | ||
| 11 | if cfg!(any( | 11 | if cfg!(any( |
| 12 | // too little RAM to run from RAM. | 12 | // too little RAM to run from RAM. |
| 13 | feature = "stm32f103c8", | 13 | feature = "stm32f103c8", // 20 kb |
| 14 | feature = "stm32c031c6", | 14 | feature = "stm32c031c6", // 6 kb |
| 15 | feature = "stm32wb55rg", | 15 | feature = "stm32l073rz", // 20 kb |
| 16 | feature = "stm32l073rz", | 16 | feature = "stm32h503rb", // 32 kb |
| 17 | feature = "stm32h503rb", | ||
| 18 | // wrong ram size in stm32-data | ||
| 19 | feature = "stm32wl55jc", | ||
| 20 | feature = "stm32u5a5zj", | ||
| 21 | // no VTOR, so interrupts can't work when running from RAM | 17 | // no VTOR, so interrupts can't work when running from RAM |
| 22 | feature = "stm32f091rc", | 18 | feature = "stm32f091rc", |
| 23 | )) { | 19 | )) { |
