Trait kernel::Chip
[−]
[src]
pub trait Chip { type MPU: MPU; type SysTick: SysTick; fn service_pending_interrupts(&mut self); fn has_pending_interrupts(&self) -> bool; fn mpu(&self) -> &Self::MPU; fn systick(&self) -> &Self::SysTick; fn prepare_for_sleep(&self) { ... } }
Interface for individual MCUs.