File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ description = "Rust driver for the LTE stack on the Nordic nRF9160"
10
10
resolver = " 2"
11
11
12
12
[dependencies ]
13
- nrf9160-pac = " 0.2.1 "
14
- cortex-m = " 0.6 "
13
+ nrf9160-pac = " 0.12 "
14
+ cortex-m = " 0.7 "
15
15
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
+ ] }
17
19
log = " 0.4"
18
20
nrfxlib-sys = " =1.5.1"
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ pub extern "C" fn nrfx_ipc_init(
226
226
let irq_num = usize:: from ( irq. number ( ) ) ;
227
227
unsafe {
228
228
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) ;
230
230
}
231
231
IPC_CONTEXT . store ( p_context, core:: sync:: atomic:: Ordering :: SeqCst ) ;
232
232
IPC_HANDLER . store ( handler as usize , core:: sync:: atomic:: Ordering :: SeqCst ) ;
Original file line number Diff line number Diff line change @@ -160,10 +160,11 @@ pub fn init() -> Result<(), Error> {
160
160
unsafe {
161
161
/// Allocate some space in global data to use as a heap.
162
162
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 _ ;
164
164
let heap_size = HEAP_MEMORY . len ( ) * core:: mem:: size_of :: < u32 > ( ) ;
165
165
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) )
167
168
} ) ;
168
169
}
169
170
@@ -198,7 +199,7 @@ pub fn init() -> Result<(), Error> {
198
199
// Use the same TX memory region as above
199
200
cortex_m:: interrupt:: free ( |cs| {
200
201
* TX_ALLOCATOR . borrow ( cs) . borrow_mut ( ) = Some ( Heap :: new (
201
- params. shmem . tx . base as usize ,
202
+ params. shmem . tx . base as * mut _ ,
202
203
params. shmem . tx . size as usize ,
203
204
) )
204
205
} ) ;
You can’t perform that action at this time.
0 commit comments