mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-03 07:09:59 +01:00
cppcheck fix
This commit is contained in:
parent
8a70ca9f0c
commit
ee6230854c
|
|
@ -1,6 +1,6 @@
|
|||
#include "LoRa_APRS.h"
|
||||
|
||||
LoRa_APRS::LoRa_APRS() {
|
||||
LoRa_APRS::LoRa_APRS() : _RxFrequency(433775000), _TxFrequency(433775000) {
|
||||
}
|
||||
|
||||
bool LoRa_APRS::checkMessage() {
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ bool TaskManager::loop(System &system) {
|
|||
return ret;
|
||||
}
|
||||
|
||||
// cppcheck-suppress unusedFunction
|
||||
void StatusFrame::drawStatusPage(Bitmap &bitmap) {
|
||||
int y = 0;
|
||||
for (Task *task : _tasks) {
|
||||
|
|
|
|||
|
|
@ -132,7 +132,6 @@ void setup() {
|
|||
logPrintlnI("setup done...");
|
||||
}
|
||||
|
||||
// cppcheck-suppress unusedFunction
|
||||
void loop() {
|
||||
LoRaSystem.getTaskManager().loop(LoRaSystem);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue