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
|
|
|
|
|
2024-03-28 13:04:17 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
```
|