fixed crone code for idf5 support, update webguiapp
This commit is contained in:
parent
50e224c4d9
commit
a5c32d884f
|
|
@ -1 +1 @@
|
||||||
Subproject commit 4c2dd92bd130859ce3deabd0b9e361b1d603ed73
|
Subproject commit abd7941e2750c1873173fc9bff53d6264406ac1f
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
idf:
|
idf:
|
||||||
component_hash: null
|
component_hash: null
|
||||||
source:
|
source:
|
||||||
type: idf
|
type: idf
|
||||||
version: 4.4.4
|
version: 5.0.1
|
||||||
manifest_hash: 31dd4ec84ade1450fc168388f4adce2efacd1516170670735140bc772e9d72bd
|
manifest_hash: cc4f7a08a6eeed39d05fbfb84ff3df9215bdf0009945794b887b5e99cbaee95b
|
||||||
target: esp32
|
target: esp32
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|
|
||||||
|
|
@ -78,8 +78,8 @@ void DebugTimer()
|
||||||
ESP_LOGW(TAG, "Cron expression:%s", GetAppConf()->Timers[i].cron);
|
ESP_LOGW(TAG, "Cron expression:%s", GetAppConf()->Timers[i].cron);
|
||||||
cron_expr cron_exp = {0};
|
cron_expr cron_exp = {0};
|
||||||
cron_parse_expr(GetAppConf()->Timers[i].cron, &cron_exp, NULL);
|
cron_parse_expr(GetAppConf()->Timers[i].cron, &cron_exp, NULL);
|
||||||
ESP_LOGW(TAG, "Timer %d prev: %u", i, (uint32_t)cron_prev(&cron_exp, now));
|
ESP_LOGW(TAG, "Timer %d prev: %u", i, (unsigned int)cron_prev(&cron_exp, now));
|
||||||
ESP_LOGW(TAG, "Timer %d next: %u", i, (uint32_t)cron_next(&cron_exp, now));
|
ESP_LOGW(TAG, "Timer %d next: %u", i, (unsigned int)cron_next(&cron_exp, now));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user