fixing cppcheck in power_management

pull/96/head
Peter Buchegger 2021-05-25 21:32:07 +02:00
rodzic 32aee92eeb
commit 493fd35562
1 zmienionych plików z 0 dodań i 5 usunięć

Wyświetl plik

@ -1,11 +1,9 @@
#include "power_management.h"
// cppcheck-suppress uninitMemberVar
PowerManagement::PowerManagement() {
}
// cppcheck-suppress unusedFunction
bool PowerManagement::begin(TwoWire &port) {
bool result = axp.begin(port, AXP192_SLAVE_ADDRESS);
if (!result) {
@ -14,7 +12,6 @@ bool PowerManagement::begin(TwoWire &port) {
return result;
}
// cppcheck-suppress unusedFunction
void PowerManagement::activateLoRa() {
axp.setPowerOutPut(AXP192_LDO2, AXP202_ON);
}
@ -29,12 +26,10 @@ void PowerManagement::activateGPS() {
axp.setPowerOutPut(AXP192_LDO3, AXP202_ON);
}
// cppcheck-suppress unusedFunction
void PowerManagement::deactivateGPS() {
axp.setPowerOutPut(AXP192_LDO3, AXP202_OFF);
}
// cppcheck-suppress unusedFunction
void PowerManagement::activateOLED() {
axp.setPowerOutPut(AXP192_DCDC1, AXP202_ON);
}