* fix for double radio.begin(). RNG seed from pressing ENTER

This commit is contained in:
Scott Powell 2025-03-25 17:40:36 +11:00
parent 1220c69aa9
commit d32e641225
2 changed files with 11 additions and 7 deletions

View file

@ -6,6 +6,6 @@ ESP32Board board;
ESPNOWRadio radio;
bool radio_init() {
radio.begin();
// NOTE: radio.begin() is called by Dispatcher::begin(), so not needed here
return true; // success
}