Ensure interrupt::take works without embassy-executor

Add "rtos-trace-interrupt" feature flag on embassy-macros and enable it
for embassy-executor, to ensure that the interrupt::take! macro can be
used without depending on embassy-executor.
This commit is contained in:
Ulf Lilleengen
2022-08-23 14:57:45 +02:00
parent 529535194d
commit 045ae2c29f
3 changed files with 26 additions and 8 deletions

View File

@ -15,3 +15,6 @@ proc-macro = true
[features]
std = []
wasm = []
# Enabling this cause interrupt::take! to require embassy-executor
rtos-trace-interrupt = []