Skip to content

Commit 3cbcb99

Browse files
authored
Merge pull request #98 from thalesfragoso/alloc-example
Fix alloc example
2 parents be44af6 + 5c6a17c commit 3cbcb99

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ panic-halt = "0.2.0"
1515
# panic-itm = "0.4.1"
1616

1717
# Uncomment for the allocator example.
18-
# alloc-cortex-m = "0.3.5"
18+
# alloc-cortex-m = "0.4.0"
1919

2020
# Uncomment for the device example.
2121
# Update `memory.x`, set target to `thumbv7em-none-eabihf` in `.cargo/config`,

examples/allocator.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
//!
1010
//! ---
1111
12-
#![feature(alloc)]
1312
#![feature(alloc_error_handler)]
1413
#![no_main]
1514
#![no_std]
@@ -23,7 +22,7 @@ use core::alloc::Layout;
2322
use alloc_cortex_m::CortexMHeap;
2423
use cortex_m::asm;
2524
use cortex_m_rt::entry;
26-
use cortex_m_semihosting::hprintln;
25+
use cortex_m_semihosting::{hprintln, debug};
2726

2827
// this is the allocator the application will use
2928
#[global_allocator]

0 commit comments

Comments
 (0)