executor: make task arena size configurable.
This commit is contained in:
@ -27,28 +27,6 @@ default-target = "thumbv7em-none-eabi"
|
||||
targets = ["thumbv7em-none-eabi"]
|
||||
features = ["nightly", "defmt", "arch-cortex-m", "executor-thread", "executor-interrupt"]
|
||||
|
||||
[features]
|
||||
|
||||
# Architecture
|
||||
_arch = [] # some arch was picked
|
||||
arch-std = ["_arch", "critical-section/std"]
|
||||
arch-cortex-m = ["_arch", "dep:cortex-m"]
|
||||
arch-xtensa = ["_arch"]
|
||||
arch-riscv32 = ["_arch", "dep:portable-atomic"]
|
||||
arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys"]
|
||||
|
||||
# Enable the thread-mode executor (using WFE/SEV in Cortex-M, WFI in other embedded archs)
|
||||
executor-thread = []
|
||||
# Enable the interrupt-mode executor (available in Cortex-M only)
|
||||
executor-interrupt = []
|
||||
|
||||
# Enable nightly-only features
|
||||
nightly = ["embassy-macros/nightly"]
|
||||
|
||||
turbowakers = []
|
||||
|
||||
integrated-timers = ["dep:embassy-time"]
|
||||
|
||||
[dependencies]
|
||||
defmt = { version = "0.3", optional = true }
|
||||
log = { version = "0.4.14", optional = true }
|
||||
@ -71,3 +49,71 @@ js-sys = { version = "0.3", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
critical-section = { version = "1.1", features = ["std"] }
|
||||
|
||||
|
||||
[features]
|
||||
|
||||
# Architecture
|
||||
_arch = [] # some arch was picked
|
||||
arch-std = ["_arch", "critical-section/std"]
|
||||
arch-cortex-m = ["_arch", "dep:cortex-m"]
|
||||
arch-xtensa = ["_arch"]
|
||||
arch-riscv32 = ["_arch", "dep:portable-atomic"]
|
||||
arch-wasm = ["_arch", "dep:wasm-bindgen", "dep:js-sys"]
|
||||
|
||||
# Enable the thread-mode executor (using WFE/SEV in Cortex-M, WFI in other embedded archs)
|
||||
executor-thread = []
|
||||
# Enable the interrupt-mode executor (available in Cortex-M only)
|
||||
executor-interrupt = []
|
||||
|
||||
# Enable nightly-only features
|
||||
nightly = ["embassy-macros/nightly"]
|
||||
|
||||
turbowakers = []
|
||||
|
||||
integrated-timers = ["dep:embassy-time"]
|
||||
|
||||
# BEGIN AUTOGENERATED CONFIG FEATURES
|
||||
# Generated by gen_config.py. DO NOT EDIT.
|
||||
task-arena-size-64 = []
|
||||
task-arena-size-128 = []
|
||||
task-arena-size-192 = []
|
||||
task-arena-size-256 = []
|
||||
task-arena-size-320 = []
|
||||
task-arena-size-384 = []
|
||||
task-arena-size-512 = []
|
||||
task-arena-size-640 = []
|
||||
task-arena-size-768 = []
|
||||
task-arena-size-1024 = []
|
||||
task-arena-size-1280 = []
|
||||
task-arena-size-1536 = []
|
||||
task-arena-size-2048 = []
|
||||
task-arena-size-2560 = []
|
||||
task-arena-size-3072 = []
|
||||
task-arena-size-4096 = [] # Default
|
||||
task-arena-size-5120 = []
|
||||
task-arena-size-6144 = []
|
||||
task-arena-size-8192 = []
|
||||
task-arena-size-10240 = []
|
||||
task-arena-size-12288 = []
|
||||
task-arena-size-16384 = []
|
||||
task-arena-size-20480 = []
|
||||
task-arena-size-24576 = []
|
||||
task-arena-size-32768 = []
|
||||
task-arena-size-40960 = []
|
||||
task-arena-size-49152 = []
|
||||
task-arena-size-65536 = []
|
||||
task-arena-size-81920 = []
|
||||
task-arena-size-98304 = []
|
||||
task-arena-size-131072 = []
|
||||
task-arena-size-163840 = []
|
||||
task-arena-size-196608 = []
|
||||
task-arena-size-262144 = []
|
||||
task-arena-size-327680 = []
|
||||
task-arena-size-393216 = []
|
||||
task-arena-size-524288 = []
|
||||
task-arena-size-655360 = []
|
||||
task-arena-size-786432 = []
|
||||
task-arena-size-1048576 = []
|
||||
|
||||
# END AUTOGENERATED CONFIG FEATURES
|
||||
|
Reference in New Issue
Block a user