mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #745
745: Check rtic-monotonics with eh-async enabled r=korken89 a=datdenkikniet `@korken89` discovered that the embedded-hal-async stuff had been broken for a longer time. This should've been caught by CI, but we don't test it with this feature enabled. This PR fixes that. Co-authored-by: datdenkikniet <jcdra1@gmail.com>
This commit is contained in:
commit
df3d5a5e2e
1 changed files with 12 additions and 12 deletions
|
@ -64,18 +64,18 @@ impl Package {
|
||||||
&["cortex-m-systick", "rp2040", "nrf52840"][..]
|
&["cortex-m-systick", "rp2040", "nrf52840"][..]
|
||||||
} else {
|
} else {
|
||||||
&[
|
&[
|
||||||
"cortex-m-systick",
|
"cortex-m-systick,embedded-hal-async",
|
||||||
"cortex-m-systick,systick-100hz",
|
"cortex-m-systick,systick-100hz,embedded-hal-async",
|
||||||
"cortex-m-systick,systick-10khz",
|
"cortex-m-systick,systick-10khz,embedded-hal-async",
|
||||||
"rp2040",
|
"rp2040,embedded-hal-async",
|
||||||
"nrf52810",
|
"nrf52810,embedded-hal-async",
|
||||||
"nrf52811",
|
"nrf52811,embedded-hal-async",
|
||||||
"nrf52832",
|
"nrf52832,embedded-hal-async",
|
||||||
"nrf52833",
|
"nrf52833,embedded-hal-async",
|
||||||
"nrf52840",
|
"nrf52840,embedded-hal-async",
|
||||||
"nrf5340-app",
|
"nrf5340-app,embedded-hal-async",
|
||||||
"nrf5340-net",
|
"nrf5340-net,embedded-hal-async",
|
||||||
"nrf9160",
|
"nrf9160,embedded-hal-async",
|
||||||
][..]
|
][..]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue