Skip to content

Commit 576aaa6

Browse files
committed
ModbusSunSpec: prevent division by zero
1 parent b61c2ca commit 576aaa6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/ModbusSunSpec.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -378,14 +378,18 @@ void ModbusSunSpecClass::loop() {
378378
void ModbusSunSpecClass::setPowerLimit(uint16_t limit_pct, uint16_t timeout_sec) {
379379
const CONFIG_T& config = Configuration.get();
380380

381-
MessageOutput.println("--------------");
382-
MessageOutput.println(" Power Limit");
383-
MessageOutput.println("--------------");
384-
385381
uint16_t power_divider = config.SunSpec.PowerDivider;
386382
uint16_t total_max_power = getTotalMaxPower();
387383
uint16_t total_set_power = (total_max_power * limit_pct) / 100;
388384

385+
if(total_max_power == 0 || power_divider == 0) {
386+
return;
387+
}
388+
389+
MessageOutput.println("--------------");
390+
MessageOutput.println(" Power Limit");
391+
MessageOutput.println("--------------");
392+
389393
// round total_set_power
390394
total_set_power = (total_set_power / power_divider) * power_divider;
391395

0 commit comments

Comments
 (0)