mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 04:10:28 +00:00

* Use TLSF by default * Update example heap usage to leave more stack * Fix test configurations
15 lines
346 B
YAML
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"
|