* calculation of max AC power
* fix counter overflow communication queue
* added max inverter temperature
This commit is contained in:
lumapu 2024-05-05 09:30:41 +02:00
parent abc760e4d2
commit e4a467cd9b
12 changed files with 89 additions and 35 deletions

View file

@ -131,7 +131,7 @@ class CommQueue {
if(mQueue[ptr].iv->id == q->iv->id)
return true;
}
ptr++;
inc(&ptr);
}
return false;
}