esp8266-hal
esp8266-hal copied to clipboard
A experimental hardware abstraction layer for the esp8266 written in Rust.
I have tried to set up a GPIO interrupt handler the following way: ```rust #[interrupt(gpio)] fn gpio_intr() { // do something } #[entry] fn main() -> ! { enable_interrupt(InterruptType::GPIO); //...
Can we get Analog or I2S examples?
Is it possible to set the baud rate of UART0? I am using a NodeMCU ESP8266EX and trying to send debug print statements back to my computer (read with the...
I'm coming from Arduino using C/C++, and I want to start using Rust on my many ESP8266's. I'm struggling a bit with where to get started, and I'm seeeing that...