1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

fix: missing test

This commit is contained in:
thomas.bridi 2018-08-27 18:28:06 +02:00
parent 50d287a9d4
commit 1a67f5da17
2 changed files with 5 additions and 2 deletions

View file

@ -322,6 +322,10 @@ uint16_t getBatteryVoltage(void) {
return testBatteryVoltage;
}
uint16_t getBatteryAverageCellVoltage(void) {
return 0;
}
batteryState_e getBatteryState(void) {
return BATTERY_OK;
}