Skip to content

Commit dd70b4f

Browse files
committedJul 13, 2020
Exposed used and free methods on CortexMHeap
1 parent 6c9060f commit dd70b4f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎src/lib.rs

+20
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,26 @@ impl CortexMHeap {
6161
.init(start_addr, size);
6262
});
6363
}
64+
65+
/// Returns an estimate of the amount of bytes in use.
66+
pub fn used(&self) -> usize {
67+
cortex_m::interrupt::free(|cs| {
68+
self.heap
69+
.borrow(cs)
70+
.borrow_mut()
71+
.used()
72+
})
73+
}
74+
75+
/// Returns an estimate of the amount of bytes available.
76+
pub fn free(&self) -> usize {
77+
cortex_m::interrupt::free(|cs| {
78+
self.heap
79+
.borrow(cs)
80+
.borrow_mut()
81+
.free()
82+
})
83+
}
6484
}
6585

6686
unsafe impl GlobalAlloc for CortexMHeap {

0 commit comments

Comments
 (0)
Please sign in to comment.