1
2
3
4
5
6
7
8
pub use self::uart::Uart;

pub mod uart;

pub trait Addon
{
    fn tick(&mut self, core: &mut ::Core);
}