spaces to tabs

This commit is contained in:
Peter Buchegger 2020-11-01 00:47:14 +01:00
parent e570736cc8
commit 8d1beb132f
2 changed files with 14 additions and 14 deletions

View file

@ -9,12 +9,12 @@ PowerManagement::PowerManagement()
// cppcheck-suppress unusedFunction
bool PowerManagement::begin(TwoWire & port)
{
bool result = axp.begin(port, AXP192_SLAVE_ADDRESS);
if(!result)
{
axp.setDCDC1Voltage(3300);
}
return result;
bool result = axp.begin(port, AXP192_SLAVE_ADDRESS);
if(!result)
{
axp.setDCDC1Voltage(3300);
}
return result;
}
// cppcheck-suppress unusedFunction

View file

@ -8,19 +8,19 @@ class PowerManagement
{
public:
PowerManagement();
bool begin(TwoWire & port);
bool begin(TwoWire & port);
void activateLoRa();
void deactivateLoRa();
void activateLoRa();
void deactivateLoRa();
void activateGPS();
void deactivateGPS();
void activateGPS();
void deactivateGPS();
void activateOLED();
void decativateOLED();
void activateOLED();
void decativateOLED();
private:
AXP20X_Class axp;
AXP20X_Class axp;
};
#endif