WEBUI update
Some checks failed
Commit Test Build / build (map[chip:esp32 name:ttgo-lora32-v21]) (push) Has been cancelled

This commit is contained in:
Ricardo Guzman (Richonguzman) 2026-01-20 22:44:03 -03:00
parent 0d7cff14f5
commit 7c9903ac12
13 changed files with 62 additions and 105 deletions

View file

@ -81,9 +81,7 @@ namespace LoRa_Utils {
radio.XTAL = true;
#endif
int state = radio.begin(freq);
if (state == RADIOLIB_ERR_NONE) {
Utils::println("Initializing LoRa Module");
} else {
if (state != RADIOLIB_ERR_NONE) {
Utils::println("Starting LoRa failed! State: " + String(state));
while (true);
}