Struct hail::Hail [] [src]

struct Hail {
    console: &'static Console<'static, USART>,
    gpio: &'static GPIO<'static, GPIOPin>,
    alarm: &'static AlarmDriver<'static, VirtualMuxAlarm<'static, Ast<'static>>>,
    ambient_light: &'static AmbientLight<'static>,
    temp: &'static TemperatureSensor<'static>,
    ninedof: &'static NineDof<'static>,
    humidity: &'static HumiditySensor<'static>,
    spi: &'static Spi<'static, VirtualSpiMasterDevice<'static, Spi>>,
    nrf51822: &'static Nrf51822Serialization<'static, USART>,
    adc: &'static Adc<'static, Adc>,
    led: &'static LED<'static, GPIOPin>,
    button: &'static Button<'static, GPIOPin>,
    rng: &'static SimpleRng<'static, Trng<'static>>,
    ipc: IPC,
    crc: &'static Crc<'static, Crccu<'static>>,
    dac: &'static Dac<'static>,
}

A structure representing this platform that holds references to all capsules for this platform.

Fields

Trait Implementations

impl Platform for Hail
[src]

Mapping of integer syscalls to objects that implement syscalls.

[src]

Platform-specific mapping of syscall numbers to objects that implement the Driver methods for that syscall Read more