esp-hal/esp-alloc/build.rs
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

10 lines
352 B
Rust

use esp_config::generate_config_from_yaml_definition;
fn main() {
// emit config
println!("cargo:rerun-if-changed=./esp_config.yml");
let cfg_yaml = std::fs::read_to_string("./esp_config.yml")
.expect("Failed to read esp_config.yml for esp-alloc");
generate_config_from_yaml_definition(&cfg_yaml, true, true, None).unwrap();
}