mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
Update embedded-hal-bus to 0.2 and fix portable-atomic features
This commit is contained in:
parent
918f9c3f13
commit
861a63dbe3
4 changed files with 31 additions and 20 deletions
|
|
@ -73,30 +73,39 @@ impl Package {
|
|||
][..]
|
||||
} else {
|
||||
&[
|
||||
"cortex-m-systick,portable-atomic/critical-section",
|
||||
"cortex-m-systick,systick-64bit,portable-atomic/critical-section",
|
||||
"rp2040,portable-atomic/critical-section",
|
||||
"nrf52805,portable-atomic/critical-section",
|
||||
"nrf52810,portable-atomic/critical-section",
|
||||
"nrf52811,portable-atomic/critical-section",
|
||||
"nrf52832,portable-atomic/critical-section",
|
||||
"nrf52833,portable-atomic/critical-section",
|
||||
"nrf52840,portable-atomic/critical-section",
|
||||
"nrf5340-app,portable-atomic/critical-section",
|
||||
"nrf5340-net,portable-atomic/critical-section",
|
||||
"nrf9160,portable-atomic/critical-section",
|
||||
"imxrt_gpt1,imxrt_gpt2,imxrt-ral/imxrt1062,portable-atomic/critical-section",
|
||||
"stm32_tim2,stm32_tim3,stm32_tim4,stm32_tim5,stm32_tim15,stm32h725ag,portable-atomic/critical-section",
|
||||
"cortex-m-systick",
|
||||
"cortex-m-systick,systick-64bit",
|
||||
"rp2040",
|
||||
"nrf52805",
|
||||
"nrf52810",
|
||||
"nrf52811",
|
||||
"nrf52832",
|
||||
"nrf52833",
|
||||
"nrf52840",
|
||||
"nrf5340-app",
|
||||
"nrf5340-net",
|
||||
"nrf9160",
|
||||
"imxrt_gpt1,imxrt_gpt2,imxrt-ral/imxrt1062",
|
||||
"stm32_tim2,stm32_tim3,stm32_tim4,stm32_tim5,stm32_tim15,stm32h725ag",
|
||||
][..]
|
||||
};
|
||||
|
||||
features
|
||||
.iter()
|
||||
.map(ToString::to_string)
|
||||
.map(|&s| {
|
||||
if matches!(backend, Backends::Thumbv6) {
|
||||
format!("{s},portable-atomic/critical-section")
|
||||
} else {
|
||||
s.to_string()
|
||||
}
|
||||
})
|
||||
.map(Some)
|
||||
.chain(std::iter::once(None))
|
||||
.collect()
|
||||
}
|
||||
Package::RticSync if matches!(backend, Backends::Thumbv6) => {
|
||||
vec![Some("portable-atomic/critical-section".into())]
|
||||
}
|
||||
_ => vec![None],
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue