Merge pull request #303 from lora-aprs/fix-tx-loop

fix TX issue
pull/307/head^2
Peter Buchegger 2023-06-04 15:22:03 +00:00 zatwierdzone przez GitHub
commit 35ae9d8204
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -164,6 +164,9 @@ bool RadiolibTask::loop(System &system) {
} else {
if (!txEnable) {
// system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, getName(), "[%s] TX is not enabled", timeString().c_str());
if (!_toModem.empty()) {
_toModem.getElement(); // empty list, otherwise memory will get full.
}
} else {
if (transmitFlag) {
// system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, getName(), "[%s] TX signal detected. Waiting TX", timeString().c_str());
@ -182,8 +185,6 @@ bool RadiolibTask::loop(System &system) {
return true;
}
}
} else {
_toModem.getElement(); // empty list, otherwise memory will get full.
}
}
}