Update hardware.c

Fix type on fallback voltage- @dhiltonp
This commit is contained in:
Ben V. Brown
2018-12-29 16:33:59 +11:00
parent d6b6f2b761
commit 9804a989ff

View File

@@ -415,7 +415,7 @@ int16_t calculateMaxVoltage(uint8_t useHP) {
if (Vx < 90)
Vx = 90;
else if (Vx >= 105)
Vx = 12;
Vx = 120;
return Vx;
}