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
use core::ptr;
const ADDR: u32 = 0x806020u32;
fn cal(addr_offset: u32, bit_shift: u32, bit_mask: u32) -> u32 {
unsafe {
let addr: *const u32 = (ADDR + addr_offset) as *const _;
let value = ptr::read(addr);
(value >> bit_shift) & bit_mask
}
}
fn cal_with_errata(
addr_offset: u32,
bit_shift: u32,
bit_mask: u32,
bad_val: u32,
def_val: u32,
) -> u32 {
let val = cal(addr_offset, bit_shift, bit_mask);
if val == bad_val {
def_val
} else {
val
}
}
pub fn osc32k_cal() -> u8 {
cal(4, 6, 0x7f) as u8
}
pub fn dfll48m_coarse_cal() -> u8 {
cal_with_errata(4, 26, 0x3f, 0x3f, 0x1f) as u8
}
pub fn usb_transn_cal() -> u8 {
cal_with_errata(4, 13, 0x1f, 0x1f, 5) as u8
}
pub fn usb_transp_cal() -> u8 {
cal_with_errata(4, 18, 0x1f, 0x1f, 29) as u8
}
pub fn usb_trim_cal() -> u8 {
#[cfg(feature = "samd11")]
return cal_with_errata(4, 23, 7, 7, 5) as u8;
#[cfg(feature = "samd21")]
return cal_with_errata(4, 23, 7, 7, 3) as u8;
}