1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 17:55:30 +03:00

Left pad OSD electrical power readout

This commit is contained in:
Dan Nixon 2017-09-10 15:21:34 +01:00
parent 8a1ba09ee8
commit 3013229918
2 changed files with 7 additions and 7 deletions

View file

@ -572,7 +572,7 @@ static void osdDrawSingleElement(uint8_t item)
} }
case OSD_POWER: case OSD_POWER:
tfp_sprintf(buff, "%dW", getAmperage() * getBatteryVoltage() / 1000); tfp_sprintf(buff, "%4dW", getAmperage() * getBatteryVoltage() / 1000);
break; break;
case OSD_PIDRATE_PROFILE: case OSD_PIDRATE_PROFILE:

View file

@ -616,7 +616,7 @@ TEST(OsdTest, TestElementPower)
simulationBatteryVoltage = 100; // 10V simulationBatteryVoltage = 100; // 10V
// and // and
simulationBatteryAmperage = 0; simulationBatteryAmperage = 0; // 0A
// when // when
displayClearScreen(&testDisplayPort); displayClearScreen(&testDisplayPort);
@ -626,7 +626,7 @@ TEST(OsdTest, TestElementPower)
displayPortTestBufferSubstring(1, 10, " 0W"); displayPortTestBufferSubstring(1, 10, " 0W");
// given // given
simulationBatteryAmperage = 10; // 0.1AA simulationBatteryAmperage = 10; // 0.1A
// when // when
displayClearScreen(&testDisplayPort); displayClearScreen(&testDisplayPort);