esp-idf-sys 0.37.2

Bindings for ESP-IDF (Espressif's IoT Development Framework)
1
2
3
4
5
6
7
#![cfg(all(not(feature = "std"), feature = "panic_handler"))]

#[cfg_attr(not(feature = "std"), panic_handler)]
#[allow(dead_code)]
fn panic(_info: &core::panic::PanicInfo) -> ! {
    unsafe { crate::abort() }
}