lpc55-hal 0.5.0

Hardware Abstraction Layer (HAL) for the NXP LPC55S6x ARM Cortex-33 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use core::ops::Deref;

#[derive(Copy, Clone)]
pub enum UsbSpeed {
    FullSpeed,
    HighSpeed,
}

pub trait Usb<State>: Deref<Target = crate::raw::usb1::RegisterBlock> + Sync {
    const SPEED: UsbSpeed;
    // TODO: Ideally, user could use both FS and HS peripherals.
    // Then the Cargo feature could go away as well.
    // For this, would need to move NUM_ENDPOINTS from global constants
    // to associated constant, but this does not currently work.
    // const NUM_ENDPOINTS: usize;
}