From c63f1e45c78932c7fc59955d83ae7c6a8dbbd7ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicu=C8=99or=20C=C3=AE=C8=9Bu?= Date: Mon, 10 Jul 2023 15:24:34 +0300 Subject: [PATCH] fix(freertos) Indend. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nicușor Cîțu --- src/osal/lv_freertos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osal/lv_freertos.h b/src/osal/lv_freertos.h index d0e61dc6a..f4bb48b6c 100644 --- a/src/osal/lv_freertos.h +++ b/src/osal/lv_freertos.h @@ -46,7 +46,7 @@ typedef struct { typedef struct { BaseType_t - xIsInitialized; /**< Set to pdTRUE if this condition variable is initialized, pdFALSE otherwise. */ + xIsInitialized; /**< Set to pdTRUE if this condition variable is initialized, pdFALSE otherwise. */ SemaphoreHandle_t xCondWaitSemaphore; /**< Threads block on this semaphore in lv_thread_sync_wait. */ uint32_t ulWaitingThreads; /**< The number of threads currently waiting on this condition variable. */ SemaphoreHandle_t xSyncMutex; /**< Threads take this mutex before accessing the condition variable. */