* added history protection mask
* merge PR: display graph improvements #1347
This commit is contained in:
lumapu 2024-01-11 00:20:55 +01:00
parent f2c432a5cd
commit ed3e93274e
5 changed files with 8 additions and 5 deletions

View file

@ -151,7 +151,7 @@ class Inverter {
static uint32_t *timestamp; // system timestamp
static cfgInst_t *generalConfig; // general inverter configuration from setup
static IApp *app; // pointer to app interface
//static IApp *app; // pointer to app interface
public:
@ -288,7 +288,7 @@ class Inverter {
if(isConnected) {
mDevControlRequest = true;
devControlCmd = cmd;
app->triggerTickSend();
//app->triggerTickSend(); // done in RestApi.h, because of "chicken-and-egg problem ;-)"
}
return isConnected;
}