mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 00:35:39 +03:00
Merge pull request #9644 from etracer65/osd_battery_usage_div0
Prevent division by 0 error in battery usage OSD element
This commit is contained in:
commit
fee4f6f9f0
1 changed files with 1 additions and 1 deletions
|
@ -1014,7 +1014,7 @@ static void osdElementMainBatteryUsage(osdElementParms_t *element)
|
||||||
const float value = constrain(batteryConfig()->batteryCapacity - getMAhDrawn(), 0, batteryConfig()->batteryCapacity);
|
const float value = constrain(batteryConfig()->batteryCapacity - getMAhDrawn(), 0, batteryConfig()->batteryCapacity);
|
||||||
|
|
||||||
// Calculate mAh used progress
|
// Calculate mAh used progress
|
||||||
const uint8_t mAhUsedProgress = ceilf((value / (batteryConfig()->batteryCapacity / MAIN_BATT_USAGE_STEPS)));
|
const uint8_t mAhUsedProgress = (batteryConfig()->batteryCapacity) ? ceilf((value / (batteryConfig()->batteryCapacity / MAIN_BATT_USAGE_STEPS))) : 0;
|
||||||
|
|
||||||
// Create empty battery indicator bar
|
// Create empty battery indicator bar
|
||||||
element->buff[0] = SYM_PB_START;
|
element->buff[0] = SYM_PB_START;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue