The emheap
crate is a simple memory manager for embedded systems and microprocessors.
Here are the main features:
WARNING: DO NOT use this library on your PC.
In cargo.toml
toml
[dependencies]
emheap = "0"
Then, in heap.c
, change the heap memory size:
```c
```
Consider a Direct Computer Control System, it uses the ARM Cortex-M0+ microprocessor. Now, we want to use the alloc
crate.
At first, we should check out to the nightly channel:
bash
rustup default nightly
Now, declare the alloc
crate in your codes:
```rust
extern crate alloc; ```
This crate is not dependent on unstable features, however, you need to use alloc_error_handler
to cause panic. Let's special the global allocator and the error handler:
```rust use alloc::alloc::Layout; use emheap::{heap, rsalloc::Allocator};
pub static HEAP: Allocator = Allocator {};
fn allocerror(layout: Layout) -> ! { // your code... loop{} } ```
Once all that is in place, now you can finally use the collections in alloc
:
```rust use alloc::vec;
fn test() { let arr = vec![1, 2, 3, 4, 5]; for i in arr { do_other(i); } } ```