Dániel Buga
Dániel Buga
## Thank you for your contribution! We appreciate the time and effort you've put into this pull request. To help us review it efficiently, please ensure you've gone through the...
A bit of an experimental change, that allows (though doesn't fully implements) erasing the UART types completely in internal code. At this point we can make UART's Instance completely public,...
These constructors usually could be formulated as `new(...).into_async()`. This would even allow us to configure the priority of the async interrupt handler, although that's one more function :)
The goal of this issue is to lower the amount of code the users need to write for no good reason. - #1957 - #2012 - #1970 - #1999 -...
This PR removes some legacy code from the xtensa crates.
Basics - #1716 - #1719 - #1856 - #1976 Peripheral support - [x] SPI master - [ ] SPI slave - [x] I8080 #2191 - #2268 - [x] Camera #2242...
esp-idf does some validation on the configuration, e.g. ```c #if (CONFIG_ESP_WIFI_RX_BA_WIN > CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM) #error "WiFi configuration check: WARNING, WIFI_RX_BA_WIN should not be larger than WIFI_DYNAMIC_RX_BUFFER_NUM!" #endif #if (CONFIG_ESP_WIFI_RX_BA_WIN > (CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM
This could result in some funny behaviour if the user expect to loop back a GPIO into a peripheral, but the signal is not going through the GPIO matrix. (For...
Halting is fine for development, but I can't really expect end-users to grab a pair of tweezers and short a pair of pads in case their device panics. At least...
After #2231 the emulated address phase ignores dummy bits, which then get inserted to before the address is sent out. This is a bug in the implementation.