File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -378,14 +378,18 @@ void ModbusSunSpecClass::loop() {
378
378
void ModbusSunSpecClass::setPowerLimit (uint16_t limit_pct, uint16_t timeout_sec) {
379
379
const CONFIG_T& config = Configuration.get ();
380
380
381
- MessageOutput.println (" --------------" );
382
- MessageOutput.println (" Power Limit" );
383
- MessageOutput.println (" --------------" );
384
-
385
381
uint16_t power_divider = config.SunSpec .PowerDivider ;
386
382
uint16_t total_max_power = getTotalMaxPower ();
387
383
uint16_t total_set_power = (total_max_power * limit_pct) / 100 ;
388
384
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
+
389
393
// round total_set_power
390
394
total_set_power = (total_set_power / power_divider) * power_divider;
391
395
You can’t perform that action at this time.
0 commit comments