From ab14c1dd802ac5028b2a942d0c30e6e1944c47e5 Mon Sep 17 00:00:00 2001 From: Linda Date: Fri, 2 Jun 2023 18:47:22 +0800 Subject: [PATCH] docs: update comment of member idle_core_mask --- components/esp_system/include/esp_task_wdt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_system/include/esp_task_wdt.h b/components/esp_system/include/esp_task_wdt.h index c5c1d5fa11..cf7e8dacfb 100644 --- a/components/esp_system/include/esp_task_wdt.h +++ b/components/esp_system/include/esp_task_wdt.h @@ -20,7 +20,7 @@ extern "C" { */ typedef struct { uint32_t timeout_ms; /**< TWDT timeout duration in milliseconds */ - uint32_t idle_core_mask; /**< Mask of the cores who's idle task should be subscribed on initialization */ + uint32_t idle_core_mask; /**< Bitmask of the core whose idle task should be subscribed on initialization where 1 << i means that core i's idle task will be monitored by the TWDT */ bool trigger_panic; /**< Trigger panic when timeout occurs */ } esp_task_wdt_config_t;