3 unstable releases

0.5.1 Nov 5, 2023
0.5.0 Dec 8, 2022
0.0.0 Dec 6, 2022

#36 in Memory management

Download history 1561/week @ 2023-12-11 1215/week @ 2023-12-18 1006/week @ 2023-12-25 1014/week @ 2024-01-01 1430/week @ 2024-01-08 1793/week @ 2024-01-15 1886/week @ 2024-01-22 1901/week @ 2024-01-29 2308/week @ 2024-02-05 2222/week @ 2024-02-12 2103/week @ 2024-02-19 2466/week @ 2024-02-26 2826/week @ 2024-03-04 2683/week @ 2024-03-11 2165/week @ 2024-03-18 2214/week @ 2024-03-25

10,166 downloads per month
Used in 4 crates

MIT/Apache

15KB
77 lines

crates.io crates.io Minimum Supported Rust Version - Documentation - Change log

embedded-alloc

A heap allocator for embedded systems.

Note that using this as your global allocator requires Rust 1.68 or later. (With earlier versions, you need the unstable feature #![feature(default_alloc_error_handler)])

This project is developed and maintained by the libs team.

Example

Starting with Rust 1.68, this crate can be used as a global allocator on stable Rust:

#![no_std]
#![no_main]

extern crate alloc;

use cortex_m_rt::entry;
use embedded_alloc::Heap;

#[global_allocator]
static HEAP: Heap = Heap::empty();

#[entry]
fn main() -> ! {
    // Initialize the allocator BEFORE you use it
    {
        use core::mem::MaybeUninit;
        const HEAP_SIZE: usize = 1024;
        static mut HEAP_MEM: [MaybeUninit<u8>; HEAP_SIZE] = [MaybeUninit::uninit(); HEAP_SIZE];
        unsafe { HEAP.init(HEAP_MEM.as_ptr() as usize, HEAP_SIZE) }
    }

    // now the allocator is ready types like Box, Vec can be used.

    loop { /* .. */ }
}

For a full usage example, see examples/global_alloc.rs.

For this to work, an implementation of critical-section must be provided.

For simple use cases you may enable the critical-section-single-core feature in the cortex-m crate. Please refer to the documentation of critical-section for further guidance.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Code of Conduct

Contribution to this crate is organized under the terms of the Rust Code of Conduct, the maintainer of this crate, the libs team, promises to intervene to uphold that code of conduct.

Dependencies

~100KB