diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2024-06-23 08:45:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-23 06:45:49 +0000 |
| commit | 918f9c3f13a75d6d01f283702353ebc31bf36c69 (patch) | |
| tree | ab3211474731fffee997e7a01ded708d88421133 /xtask/src/argument_parsing.rs | |
| parent | 9aeae030e7834d164172d5d1d811cb4cbd16253c (diff) | |
Breaking change: portable-atomic (#922)
* Atomics: Replace polyfill with portable-atomic
* Update Cargo.lock for examples
* RTIC: portable-atomic: Update changelog
* rtic-monotonics: portable-atomic: Update changelog
* lm3s6965: enable critical-section when testing
* xtask: Enable portable-atomic/critical-section
When dealing with rtic-monotonics
* rtic-monotonics: portable-atomics: Do not disable the ability to fallback
---------
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'xtask/src/argument_parsing.rs')
| -rw-r--r-- | xtask/src/argument_parsing.rs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index d7301f4..14920fd 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -73,20 +73,20 @@ impl Package { ][..] } else { &[ - "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", + "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", ][..] }; |
