increase task delay when waiting in the background to 10s

This commit is contained in:
Patric Gruber 2023-03-31 10:25:36 +02:00
parent f7b1111e05
commit 58c507ee45

View file

@ -148,7 +148,7 @@ int HeartRateTask::CurrentTaskDelay() {
case States::Running:
return 100;
case States::BackgroundWaiting:
return 500;
return 10000;
default:
return portMAX_DELAY;
}