From 8f09145b3f6cc93aba615b44ca0ac03a2f368646 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Tue, 5 Aug 2025 02:03:17 -0400 Subject: [PATCH] FreeRTOS --- ESP32-IDF_FreeRTOS/I2C_MultiDevice/main/hello_world_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ESP32-IDF_FreeRTOS/I2C_MultiDevice/main/hello_world_main.c b/ESP32-IDF_FreeRTOS/I2C_MultiDevice/main/hello_world_main.c index 58a84754f..09cc6a9e2 100644 --- a/ESP32-IDF_FreeRTOS/I2C_MultiDevice/main/hello_world_main.c +++ b/ESP32-IDF_FreeRTOS/I2C_MultiDevice/main/hello_world_main.c @@ -22,6 +22,7 @@ SemaphoreHandle_t xMutex; QueueHandle_t xQueue1; QueueHandle_t xQueue2; +static int cntdn; void task1(void *pvParameters); void task2(void *pvParameters); @@ -29,6 +30,7 @@ void task_restart(void *pvParameters); void app_main(void) { + cntdn = 10; printf("Hello world!\n"); /* Print chip information */