imxrt-hal 0.5.14

Hardware abstraction layer for NXP i.MX RT microcontrollers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Simply turns on the LED.

#![no_main]
#![no_std]

#[imxrt_rt::entry]
fn main() -> ! {
    let (_, board::Specifics { led, .. }) = board::new();
    loop {
        led.set();
    }
}