1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! USB Device support use crate::gpio; pub use usb_device; mod bus; pub use self::bus::UsbBus; mod devicedesc; use self::devicedesc::Descriptors; /// Emit SOF at 1Khz on this pin when configured as function G pub type SofPad = gpio::Pa23<gpio::PfG>; /// USB D- is connected here pub type DmPad = gpio::Pa24<gpio::PfG>; /// USB D+ is connected here pub type DpPad = gpio::Pa25<gpio::PfG>;