2022-04-14 18:08:08 +08:00
/*
2023-11-09 09:10:43 +01:00
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
2022-04-14 18:08:08 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*/
2016-10-25 18:18:11 +08:00
2017-10-09 18:07:30 +08:00
# pragma once
2022-04-14 18:06:21 +08:00
# include <stdbool.h>
2017-10-09 18:07:30 +08:00
# include "freertos/FreeRTOS.h"
# include "freertos/task.h"
# include "esp_err.h"
2016-10-25 18:18:11 +08:00
# ifdef __cplusplus
extern " C " {
# endif
2022-04-14 18:06:21 +08:00
/**
* @brief Task Watchdog Timer (TWDT) configuration structure
*/
typedef struct {
uint32_t timeout_ms ; /**< TWDT timeout duration in milliseconds */
2023-06-02 18:47:22 +08:00
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 */
2022-04-14 18:06:21 +08:00
bool trigger_panic ; /**< Trigger panic when timeout occurs */
} esp_task_wdt_config_t ;
/**
* @brief Task Watchdog Timer (TWDT) user handle
*/
typedef struct esp_task_wdt_user_handle_s * esp_task_wdt_user_handle_t ;
2017-10-09 18:07:30 +08:00
/**
2022-04-14 18:08:08 +08:00
* @brief Initialize the Task Watchdog Timer (TWDT)
*
2022-08-12 18:27:11 +08:00
* This function configures and initializes the TWDT. This function will subscribe the idle tasks if
2022-04-14 18:06:21 +08:00
* configured to do so. For other tasks, users can subscribe them using esp_task_wdt_add() or esp_task_wdt_add_user().
2022-08-12 18:27:11 +08:00
* This function won't start the timer if no task have been registered yet.
2022-04-14 18:08:08 +08:00
*
2022-07-07 14:54:15 +08:00
* @note esp_task_wdt_init() must only be called after the scheduler is started. Moreover, it must not be called by
* multiple tasks simultaneously.
2022-04-14 18:06:21 +08:00
* @param[in] config Configuration structure
2022-04-14 18:08:08 +08:00
* @return
* - ESP_OK: Initialization was successful
2022-08-12 18:27:11 +08:00
* - ESP_ERR_INVALID_STATE: Already initialized
2022-04-14 18:06:21 +08:00
* - Other: Failed to initialize TWDT
2022-04-14 18:08:08 +08:00
*/
2022-04-14 18:06:21 +08:00
esp_err_t esp_task_wdt_init ( const esp_task_wdt_config_t * config ) ;
2016-10-21 17:59:57 +08:00
2022-08-12 18:27:11 +08:00
/**
* @brief Reconfigure the Task Watchdog Timer (TWDT)
*
* The function reconfigures the running TWDT. It must already be initialized when this function is called.
*
* @note esp_task_wdt_reconfigure() must not be called by multiple tasks simultaneously.
*
* @param[in] config Configuration structure
*
* @return
* - ESP_OK: Reconfiguring was successful
* - ESP_ERR_INVALID_STATE: TWDT not initialized yet
* - Other: Failed to initialize TWDT
*/
esp_err_t esp_task_wdt_reconfigure ( const esp_task_wdt_config_t * config ) ;
2017-10-09 18:07:30 +08:00
/**
* @brief Deinitialize the Task Watchdog Timer (TWDT)
*
2022-04-14 18:06:21 +08:00
* This function will deinitialize the TWDT, and unsubscribe any idle tasks. Calling this function whilst other tasks
* are still subscribed to the TWDT, or when the TWDT is already deinitialized, will result in an error code being
* returned.
2017-10-09 18:07:30 +08:00
*
2022-07-07 14:54:15 +08:00
* @note esp_task_wdt_deinit() must not be called by multiple tasks simultaneously.
2017-10-09 18:07:30 +08:00
* @return
2022-04-14 18:06:21 +08:00
* - ESP_OK: TWDT successfully deinitialized
* - Other: Failed to deinitialize TWDT
2017-10-09 18:07:30 +08:00
*/
2019-07-16 16:33:30 +07:00
esp_err_t esp_task_wdt_deinit ( void ) ;
2016-10-25 18:18:11 +08:00
/**
2022-04-14 18:08:08 +08:00
* @brief Subscribe a task to the Task Watchdog Timer (TWDT)
*
* This function subscribes a task to the TWDT. Each subscribed task must periodically call esp_task_wdt_reset() to
2022-04-14 18:06:21 +08:00
* prevent the TWDT from elapsing its timeout period. Failure to do so will result in a TWDT timeout.
2022-04-14 18:08:08 +08:00
*
2022-04-14 18:06:21 +08:00
* @param task_handle Handle of the task. Input NULL to subscribe the current running task to the TWDT
2022-04-14 18:08:08 +08:00
* @return
* - ESP_OK: Successfully subscribed the task to the TWDT
2022-04-14 18:06:21 +08:00
* - Other: Failed to subscribe task
2022-04-14 18:08:08 +08:00
*/
2022-04-14 18:06:21 +08:00
esp_err_t esp_task_wdt_add ( TaskHandle_t task_handle ) ;
/**
* @brief Subscribe a user to the Task Watchdog Timer (TWDT)
*
* This function subscribes a user to the TWDT. A user of the TWDT is usually a function that needs to run
* periodically. Each subscribed user must periodically call esp_task_wdt_reset_user() to prevent the TWDT from elapsing
* its timeout period. Failure to do so will result in a TWDT timeout.
*
* @param[in] user_name String to identify the user
* @param[out] user_handle_ret Handle of the user
* @return
* - ESP_OK: Successfully subscribed the user to the TWDT
* - Other: Failed to subscribe user
*/
esp_err_t esp_task_wdt_add_user ( const char * user_name , esp_task_wdt_user_handle_t * user_handle_ret ) ;
2016-10-25 18:18:11 +08:00
/**
2022-04-14 18:08:08 +08:00
* @brief Reset the Task Watchdog Timer (TWDT) on behalf of the currently running task
*
* This function will reset the TWDT on behalf of the currently running task. Each subscribed task must periodically
* call this function to prevent the TWDT from timing out. If one or more subscribed tasks fail to reset the TWDT on
2022-04-14 18:06:21 +08:00
* their own behalf, a TWDT timeout will occur.
2022-04-14 18:08:08 +08:00
*
* @return
* - ESP_OK: Successfully reset the TWDT on behalf of the currently running task
2022-04-14 18:06:21 +08:00
* - Other: Failed to reset
2022-04-14 18:08:08 +08:00
*/
2019-07-16 16:33:30 +07:00
esp_err_t esp_task_wdt_reset ( void ) ;
2017-09-30 18:07:19 +08:00
2022-04-14 18:06:21 +08:00
/**
* @brief Reset the Task Watchdog Timer (TWDT) on behalf of a user
*
* This function will reset the TWDT on behalf of a user. Each subscribed user must periodically call this function to
* prevent the TWDT from timing out. If one or more subscribed users fail to reset the TWDT on their own behalf, a TWDT
* timeout will occur.
*
* @param[in] user_handle User handle
* - ESP_OK: Successfully reset the TWDT on behalf of the user
* - Other: Failed to reset
*/
esp_err_t esp_task_wdt_reset_user ( esp_task_wdt_user_handle_t user_handle ) ;
2017-10-09 18:07:30 +08:00
/**
2022-04-14 18:08:08 +08:00
* @brief Unsubscribes a task from the Task Watchdog Timer (TWDT)
*
* This function will unsubscribe a task from the TWDT. After being unsubscribed, the task should no longer call
2022-04-14 18:06:21 +08:00
* esp_task_wdt_reset().
2022-04-14 18:08:08 +08:00
*
2022-04-14 18:06:21 +08:00
* @param[in] task_handle Handle of the task. Input NULL to unsubscribe the current running task.
2022-04-14 18:08:08 +08:00
* @return
* - ESP_OK: Successfully unsubscribed the task from the TWDT
2022-04-14 18:06:21 +08:00
* - Other: Failed to unsubscribe task
*/
esp_err_t esp_task_wdt_delete ( TaskHandle_t task_handle ) ;
/**
* @brief Unsubscribes a user from the Task Watchdog Timer (TWDT)
*
* This function will unsubscribe a user from the TWDT. After being unsubscribed, the user should no longer call
* esp_task_wdt_reset_user().
*
* @param[in] user_handle User handle
* @return
* - ESP_OK: Successfully unsubscribed the user from the TWDT
* - Other: Failed to unsubscribe user
2022-04-14 18:08:08 +08:00
*/
2022-04-14 18:06:21 +08:00
esp_err_t esp_task_wdt_delete_user ( esp_task_wdt_user_handle_t user_handle ) ;
2016-10-25 18:18:11 +08:00
2017-08-30 21:11:10 +08:00
/**
2022-04-14 18:08:08 +08:00
* @brief Query whether a task is subscribed to the Task Watchdog Timer (TWDT)
*
* This function will query whether a task is currently subscribed to the TWDT, or whether the TWDT is initialized.
*
2022-04-14 18:06:21 +08:00
* @param[in] task_handle Handle of the task. Input NULL to query the current running task.
2022-04-14 18:08:08 +08:00
* @return:
* - ESP_OK: The task is currently subscribed to the TWDT
* - ESP_ERR_NOT_FOUND: The task is not subscribed
* - ESP_ERR_INVALID_STATE: TWDT was never initialized
*/
2022-04-14 18:06:21 +08:00
esp_err_t esp_task_wdt_status ( TaskHandle_t task_handle ) ;
2017-09-30 18:07:19 +08:00
2022-07-07 14:54:15 +08:00
/**
* @brief User ISR callback placeholder
*
* This function is called by task_wdt_isr function (ISR for when TWDT times out). It can be defined in user code to
* handle TWDT events.
*
* @note It has the same limitations as the interrupt function. Do not use ESP_LOGx functions inside.
*/
void __attribute__ ( ( weak ) ) esp_task_wdt_isr_user_handler ( void ) ;
2023-11-09 09:10:43 +01:00
typedef void ( * task_wdt_msg_handler ) ( void * opaque , const char * msg ) ;
/**
* @brief Prints or retrieves information about tasks/users that triggered the Task Watchdog Timeout.
*
* This function provides various operations to handle tasks/users that did not reset the Task Watchdog in time.
* It can print detailed information about these tasks/users, such as their names, associated CPUs, and whether they have been reset.
* Additionally, it can retrieve the total length of the printed information or the CPU affinity of the failing tasks.
*
* @param[in] msg_handler Optional message handler function that will be called for each printed line.
* @param[in] opaque Optional pointer to opaque data that will be passed to the message handler function.
* @param[out] cpus_fail Optional pointer to an integer where the CPU affinity of the failing tasks will be stored.
*
* @return
* - ESP_OK: The function executed successfully.
* - ESP_FAIL: No triggered tasks were found, and thus no information was printed or retrieved.
*
* @note
* - If `msg_handler` is not provided, the information will be printed to console using ESP_EARLY_LOGE.
* - If `msg_handler` is provided, the function will send the printed information to the provided message handler function.
* - If `cpus_fail` is provided, the function will store the CPU affinity of the failing tasks in the provided integer.
* - During the execution of this function, logging is allowed in critical sections, as TWDT timeouts are considered fatal errors.
*/
esp_err_t esp_task_wdt_print_triggered_tasks ( task_wdt_msg_handler msg_handler , void * opaque , int * cpus_fail ) ;
2016-10-25 18:18:11 +08:00
# ifdef __cplusplus
}
# endif