Trait bern_arch::core::ICore[][src]

pub trait ICore {
    fn new() -> Self;
fn set_systick_div(&mut self, divisor: u32);
fn start(&mut self);
fn bkpt(); }
Expand description

CPU core peripherals.

Required methods

Setup core peripherals and return core object

Set the system tick divisor

Start peripherals used by kernel

Break point instruction

Implementors