Skip to content

Commit

Permalink
Merge pull request #3736 from Navid200/Navid_2024_10_14
Browse files Browse the repository at this point in the history
Lower Voltage B warning level
  • Loading branch information
jamorham authored Oct 29, 2024
2 parents 83f3d00 + 5cefa3b commit 6d7d8e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public boolean voltageAWarning() {
}

public boolean voltageBWarning() {
if (shortTxId()) { // G7 only
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 25);
if (shortTxId()) {
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 60);
}
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 10);
};
Expand Down

0 comments on commit 6d7d8e8

Please sign in to comment.