cppcheck fix

This commit is contained in:
Peter Buchegger 2021-05-25 22:55:04 +02:00
parent 8a70ca9f0c
commit ee6230854c
3 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#include "LoRa_APRS.h"
LoRa_APRS::LoRa_APRS() {
LoRa_APRS::LoRa_APRS() : _RxFrequency(433775000), _TxFrequency(433775000) {
}
bool LoRa_APRS::checkMessage() {

View file

@ -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) {

View file

@ -132,7 +132,6 @@ void setup() {
logPrintlnI("setup done...");
}
// cppcheck-suppress unusedFunction
void loop() {
LoRaSystem.getTaskManager().loop(LoRaSystem);
}