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
use crate::pac::{RCC, USB};
use stm32_usbd::UsbPeripheral;
pub use stm32_usbd::UsbBus;
pub struct Peripheral {
pub usb: USB,
}
unsafe impl Sync for Peripheral {}
unsafe impl UsbPeripheral for Peripheral {
const REGISTERS: *const () = USB::ptr() as *const ();
const DP_PULL_UP_FEATURE: bool = true;
const EP_MEMORY: *const () = 0x4000_6000 as _;
const EP_MEMORY_ACCESS_2X16: bool = true;
#[cfg(feature = "f3")]
const EP_MEMORY_SIZE: usize = 512;
#[cfg(feature = "l4")]
const EP_MEMORY_SIZE: usize = 1024;
fn enable() {
let rcc = unsafe { &*RCC::ptr() };
cortex_m::interrupt::free(|_| {
cfg_if::cfg_if! {
if #[cfg(feature = "f3")] {
rcc.apb1enr.modify(|_, w| w.usben().enabled());
rcc.apb1rstr.modify(|_, w| w.usbrst().reset());
rcc.apb1rstr.modify(|_, w| w.usbrst().clear_bit());
} else if #[cfg(feature = "l4x3")] {
rcc.apb1enr1.modify(|_, w| w.usbfsen().set_bit());
let rstr_val = rcc.apb1rstr1.read().bits();
rcc.apb1rstr1.modify(|_, w| unsafe { w.bits(rstr_val | (1 << 26)) });
rcc.apb1rstr1.modify(|_ ,w| unsafe { w.bits(rstr_val & !(1 << 26)) });
} else {
rcc.apb1enr1.modify(|_, w| w.usbfsen().set_bit());
rcc.apb1rstr1.modify(|_, w| w.usbfsrst().set_bit());
rcc.apb1rstr1.modify(|_, w| w.usbfsrst().clear_bit());
}
}
});
}
fn startup_delay() {
cortex_m::asm::delay(72);
}
}
pub type UsbBusType = UsbBus<Peripheral>;