We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be44af6 + 5c6a17c commit 3cbcb99Copy full SHA for 3cbcb99
Cargo.toml
@@ -15,7 +15,7 @@ panic-halt = "0.2.0"
15
# panic-itm = "0.4.1"
16
17
# Uncomment for the allocator example.
18
-# alloc-cortex-m = "0.3.5"
+# alloc-cortex-m = "0.4.0"
19
20
# Uncomment for the device example.
21
# Update `memory.x`, set target to `thumbv7em-none-eabihf` in `.cargo/config`,
examples/allocator.rs
@@ -9,7 +9,6 @@
9
//!
10
//! ---
11
12
-#![feature(alloc)]
13
#![feature(alloc_error_handler)]
14
#![no_main]
#![no_std]
@@ -23,7 +22,7 @@ use core::alloc::Layout;
23
22
use alloc_cortex_m::CortexMHeap;
24
use cortex_m::asm;
25
use cortex_m_rt::entry;
26
-use cortex_m_semihosting::hprintln;
+use cortex_m_semihosting::{hprintln, debug};
27
28
// this is the allocator the application will use
29
#[global_allocator]
0 commit comments