Tasmota/lib/lib_rf/RadioLibTasmotaAlert.md

17 lines
428 B
Markdown
Raw Normal View History

2024-03-23 14:18:06 +00:00
TasmotaAlert
Action to take in case of new release of RadioLib
2024-03-27 22:03:10 +00:00
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
}
```