diff options
Diffstat (limited to 'embassy-executor/src/lib.rs')
| -rw-r--r-- | embassy-executor/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-executor/src/lib.rs b/embassy-executor/src/lib.rs index 4c6900a6d..834ebf16a 100644 --- a/embassy-executor/src/lib.rs +++ b/embassy-executor/src/lib.rs | |||
| @@ -20,9 +20,10 @@ macro_rules! check_at_most_one { | |||
| 20 | check_at_most_one!(@amo [$($f)*] [$($f)*] []); | 20 | check_at_most_one!(@amo [$($f)*] [$($f)*] []); |
| 21 | }; | 21 | }; |
| 22 | } | 22 | } |
| 23 | check_at_most_one!("arch-cortex-m", "arch-riscv32", "arch-std", "arch-wasm",); | 23 | check_at_most_one!("arch-avr", "arch-cortex-m", "arch-riscv32", "arch-std", "arch-wasm",); |
| 24 | 24 | ||
| 25 | #[cfg(feature = "_arch")] | 25 | #[cfg(feature = "_arch")] |
| 26 | #[cfg_attr(feature = "arch-avr", path = "arch/avr.rs")] | ||
| 26 | #[cfg_attr(feature = "arch-cortex-m", path = "arch/cortex_m.rs")] | 27 | #[cfg_attr(feature = "arch-cortex-m", path = "arch/cortex_m.rs")] |
| 27 | #[cfg_attr(feature = "arch-riscv32", path = "arch/riscv32.rs")] | 28 | #[cfg_attr(feature = "arch-riscv32", path = "arch/riscv32.rs")] |
| 28 | #[cfg_attr(feature = "arch-std", path = "arch/std.rs")] | 29 | #[cfg_attr(feature = "arch-std", path = "arch/std.rs")] |
