Switched to booleans for infinite while loops

This commit is contained in:
Avamander
2021-05-14 12:40:46 +03:00
parent c82dee2def
commit 33f965f326
3 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ void NrfLogger::Process(void*) {
// Suppress endless loop diagnostic
#pragma clang diagnostic push
#pragma ide diagnostic ignored "EndlessLoop"
while (1) {
while (true) {
NRF_LOG_FLUSH();
vTaskDelay(100); // Not good for power consumption, it will wake up every 100ms...
}