Fixed unpopped diagnostic

main
Avamander 2021-12-06 19:15:03 +07:00 committed by JF
parent 6a442b90a1
commit 9db5d64441
1 changed files with 1 additions and 1 deletions

@ -224,7 +224,6 @@ void SystemTask::Work() {
xTimerStart(dimTimer, 0); xTimerStart(dimTimer, 0);
xTimerStart(measureBatteryTimer, portMAX_DELAY); xTimerStart(measureBatteryTimer, portMAX_DELAY);
// Suppress endless loop diagnostic
#pragma clang diagnostic push #pragma clang diagnostic push
#pragma ide diagnostic ignored "EndlessLoop" #pragma ide diagnostic ignored "EndlessLoop"
while (true) { while (true) {
@ -437,6 +436,7 @@ void SystemTask::Work() {
watchdog.Kick(); watchdog.Kick();
} }
} }
#pragma clang diagnostic pop
} }
void SystemTask::UpdateMotion() { void SystemTask::UpdateMotion() {