Tasmota/lib/lib_rf/RadioLibTasmotaAlert.md

17 lines
428 B
Markdown

TasmotaAlert
Action to take in case of new release of RadioLib
20240327
1 - Remove folder `\lib\lib_rfRadioLib\examples\NonArduino` (Fixes Github vulnerability alerts)
2 - Change in file `\lib\lib_rf\RadioLib\src\ArduinoHal.cpp` below function (Fixes ESP8266 Panic core_esp8266_main.cpp:133 __yield)
```
void inline ArduinoHal::yield() {
#if !defined(RADIOLIB_YIELD_UNSUPPORTED)
// ::yield();
::delay(0);
#endif
}
```