esp32c-rt 0.1.1

Minimal runtime / startup for ESP32-C series SoCs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
#![no_main]

use esp32c_rt::entry;

// Provides a necessary panic handler
#[allow(unused_imports)]
use panic_halt;

#[entry]
fn main() -> ! {
    // do something here
    loop {}
}