This is a memory allocator for Rust, backed by the ESP-IDF.
This is intended to be used on an ESP32, linked against the ESP-IDF. For more information see:
Add the following to your main, application project:
~~~rust extern crate espidfalloc;
static A: espidfalloc::EspIdfAllocator = espidfalloc::EspIdfAllocator; ~~~
If you use a custom global allocator in your application, you will also need an error handler.
The following code will use the ESP-IDF abort()
method to handle the error:
~~~rust
use core::alloc::Layout;
extern "C" { fn abort() -> !; }
fn allocerror(layout: Layout) -> ! { unsafe { abort(); } } ~~~
alloc
Also be sure to link in the alloc
create, as you might want this. Add the following to your Xargo.toml
:
~~~toml [target.xtensa-esp32-none-elf.dependencies] alloc={} ~~~