aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/build.rs12
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 )) {