Default lora config

This commit is contained in:
Sassa NF
2024-12-31 11:00:48 +00:00
parent 55273f80eb
commit 6368eca7aa
4 changed files with 54 additions and 36 deletions

View File

@@ -1521,9 +1521,9 @@ void loop(void)
else
{
doScan();
if (TxComms != NULL)
if (TxComms != NULL && config.lora_enabled)
reportScan(*TxComms);
if (RxComms != NULL)
if (RxComms != NULL && config.lora_enabled)
checkRadio(*RxComms);
}
}