mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-17 00:15:15 +02:00
parent
e4a467cd9b
commit
4191aafeeb
4 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Development Changes
|
# Development Changes
|
||||||
|
|
||||||
|
## 0.8.117 - 2024-05-09
|
||||||
|
* fix reboot issue #1607
|
||||||
|
|
||||||
## 0.8.116 - 2024-05-05
|
## 0.8.116 - 2024-05-05
|
||||||
* calculation of max AC power
|
* calculation of max AC power
|
||||||
* fix counter overflow communication queue
|
* fix counter overflow communication queue
|
||||||
|
|
|
@ -481,7 +481,7 @@ void app:: zeroIvValues(bool checkAvail, bool skipYieldDay) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(changed)
|
if(changed)
|
||||||
payloadEventListener(RealTimeRunData_Debug, NULL);
|
payloadEventListener(RealTimeRunData_Debug, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
//-------------------------------------
|
//-------------------------------------
|
||||||
#define VERSION_MAJOR 0
|
#define VERSION_MAJOR 0
|
||||||
#define VERSION_MINOR 8
|
#define VERSION_MINOR 8
|
||||||
#define VERSION_PATCH 116
|
#define VERSION_PATCH 117
|
||||||
//-------------------------------------
|
//-------------------------------------
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t ch;
|
uint8_t ch;
|
||||||
|
|
|
@ -34,6 +34,9 @@ class MaxPower {
|
||||||
if(RealTimeRunData_Debug != cmd)
|
if(RealTimeRunData_Debug != cmd)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(nullptr == iv)
|
||||||
|
return;
|
||||||
|
|
||||||
if(iv->id >= MAX_NUM_INVERTERS)
|
if(iv->id >= MAX_NUM_INVERTERS)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue