esp-hal/esp-alloc/esp_config.yml
Dániel Buga 42297811be
Use TLSF by default (#4130)
* Use TLSF by default

* Update example heap usage to leave more stack

* Fix test configurations
2025-09-17 14:03:32 +00:00

15 lines
346 B
YAML

crate: esp-alloc
options:
- name: heap_algorithm
description: "The heap algorithm to use. TLSF offers higher performance
and bounded allocation time, but uses more memory."
default:
- value: '"TLSF"'
constraints:
- type:
validator: enumeration
value:
- "LLFF"
- "TLSF"