Skip to content

Commit b639e81

Browse files
Merge pull request #28 from eflukx/develop
Bump dependencies: nrf9160-pac = "0.12", cortex-m = "0.7"
2 parents 38f8502 + 139f422 commit b639e81

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ description = "Rust driver for the LTE stack on the Nordic nRF9160"
1010
resolver = "2"
1111

1212
[dependencies]
13-
nrf9160-pac = "0.2.1"
14-
cortex-m = "0.6"
13+
nrf9160-pac = "0.12"
14+
cortex-m = "0.7"
1515
heapless = "0.7"
16-
linked_list_allocator = { version="0.9.0", default-features=false, features=["use_spin"] }
16+
linked_list_allocator = { version = "0.10", default-features = false, features = [
17+
"use_spin",
18+
] }
1719
log = "0.4"
1820
nrfxlib-sys = "=1.5.1"

src/ffi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ pub extern "C" fn nrfx_ipc_init(
226226
let irq_num = usize::from(irq.number());
227227
unsafe {
228228
cortex_m::peripheral::NVIC::unmask(irq);
229-
(*cortex_m::peripheral::NVIC::ptr()).ipr[irq_num].write(irq_priority);
229+
(*cortex_m::peripheral::NVIC::PTR).ipr[irq_num].write(irq_priority);
230230
}
231231
IPC_CONTEXT.store(p_context, core::sync::atomic::Ordering::SeqCst);
232232
IPC_HANDLER.store(handler as usize, core::sync::atomic::Ordering::SeqCst);

src/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,11 @@ pub fn init() -> Result<(), Error> {
160160
unsafe {
161161
/// Allocate some space in global data to use as a heap.
162162
static mut HEAP_MEMORY: [u32; 1024] = [0u32; 1024];
163-
let heap_start = HEAP_MEMORY.as_ptr() as usize;
163+
let heap_start = HEAP_MEMORY.as_mut_ptr() as *mut _;
164164
let heap_size = HEAP_MEMORY.len() * core::mem::size_of::<u32>();
165165
cortex_m::interrupt::free(|cs| {
166-
*LIBRARY_ALLOCATOR.borrow(cs).borrow_mut() = Some(Heap::new(heap_start, heap_size))
166+
*LIBRARY_ALLOCATOR.borrow(cs).borrow_mut() =
167+
Some(Heap::new(heap_start, heap_size))
167168
});
168169
}
169170

@@ -198,7 +199,7 @@ pub fn init() -> Result<(), Error> {
198199
// Use the same TX memory region as above
199200
cortex_m::interrupt::free(|cs| {
200201
*TX_ALLOCATOR.borrow(cs).borrow_mut() = Some(Heap::new(
201-
params.shmem.tx.base as usize,
202+
params.shmem.tx.base as *mut _,
202203
params.shmem.tx.size as usize,
203204
))
204205
});

0 commit comments

Comments
 (0)