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:
bors[bot] 2023-04-23 19:50:44 +00:00 committed by GitHub
commit df3d5a5e2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",
][..] ][..]
}; };