Taskmanager menu show elapsed times

This commit is contained in:
2021-12-19 20:32:37 +01:00
parent cad8ce5d3c
commit eb55b20511
2 changed files with 22 additions and 1 deletions

View File

@@ -165,6 +165,8 @@ extern "C" void app_main()
if (now - performance.lastTime >= 1000ms)
{
sched_pushStats(false);
performance.last = performance.current;
performance.current = 0;
performance.lastTime = now;