-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlib.rs
101 lines (81 loc) · 2.16 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//! Asynchronous HAL for the nRF52840
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]
#![deny(warnings)]
#![no_std]
use core::{marker::PhantomData, mem};
use cortex_m_rt::pre_init;
pub mod ds3231;
pub mod led;
pub mod scd30;
pub mod serial;
pub mod timer;
pub mod twim;
pub use timer::Timer;
// peripheral initialization
#[pre_init]
unsafe fn pre_init() {
// configure the LFCLK to use the external crystal (32.768Hz)
pac::CLOCK::borrow_unchecked(|clock| {
clock.lfclksrc.write(|w| w.src().xtal());
clock
.tasks_lfclkstart
.write(|w| w.tasks_lfclkstart().set_bit());
while clock
.events_lfclkstarted
.read()
.events_lfclkstarted()
.bit_is_clear()
{
// busy wait
continue;
}
});
// LEDs
led::init();
// Serial port
serial::init();
// TWIM
twim::init();
// start the RTC
timer::init();
// sadly we cannot seal the configuration of the peripherals from this
// context (static variables are uninitialized at this point)
// drop(pac::Peripheral::take());
}
/// Borrows a peripheral without checking if it has already been taken
unsafe trait BorrowUnchecked {
fn borrow_unchecked<T>(f: impl FnOnce(&Self) -> T) -> T;
}
macro_rules! borrow_unchecked {
($($peripheral:ident),*) => {
$(
unsafe impl BorrowUnchecked for pac::$peripheral {
fn borrow_unchecked<T>(f: impl FnOnce(&Self) -> T) -> T {
let p = unsafe { mem::transmute(()) };
f(&p)
}
}
)*
}
}
borrow_unchecked!(CLOCK, P0, RTC0, TWIM0, UARTE0);
struct NotSync {
_inner: PhantomData<*mut ()>,
}
impl NotSync {
fn new() -> Self {
Self {
_inner: PhantomData,
}
}
}
unsafe impl Send for NotSync {}
fn slice_in_ram(slice: &[u8]) -> bool {
const RAM_START: usize = 0x2000_0000;
const RAM_SIZE: usize = 128 * 1024;
const RAM_END: usize = RAM_START + RAM_SIZE;
let start = slice.as_ptr() as usize;
let end = start + slice.len();
RAM_START <= start && end < RAM_END
}