2016-10-25 10:18:11 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2017-10-09 10:07:30 +00:00
|
|
|
//
|
2016-10-25 10:18:11 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-10-09 10:07:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "esp_err.h"
|
2016-10-25 10:18:11 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-10-09 10:07:30 +00:00
|
|
|
/**
|
|
|
|
* @brief Initialize the Task Watchdog Timer (TWDT)
|
|
|
|
*
|
|
|
|
* This function configures and initializes the TWDT. If the TWDT is already
|
|
|
|
* initialized when this function is called, this function will update the
|
|
|
|
* TWDT's timeout period and panic configurations instead. After initializing
|
|
|
|
* the TWDT, any task can elect to be watched by the TWDT by subscribing to it
|
|
|
|
* using esp_task_wdt_add().
|
|
|
|
*
|
|
|
|
* @param[in] timeout Timeout period of TWDT in seconds
|
|
|
|
* @param[in] panic Flag that controls whether the panic handler will be
|
|
|
|
* executed when the TWDT times out
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: Initialization was successful
|
|
|
|
* - ESP_ERR_NO_MEM: Initialization failed due to lack of memory
|
|
|
|
*
|
|
|
|
* @note esp_task_wdt_init() must only be called after the scheduler
|
|
|
|
* started
|
2017-09-30 10:07:19 +00:00
|
|
|
*/
|
2017-10-09 10:07:30 +00:00
|
|
|
esp_err_t esp_task_wdt_init(uint32_t timeout, bool panic);
|
2016-10-21 09:59:57 +00:00
|
|
|
|
2017-10-09 10:07:30 +00:00
|
|
|
/**
|
|
|
|
* @brief Deinitialize the Task Watchdog Timer (TWDT)
|
|
|
|
*
|
|
|
|
* This function will deinitialize the TWDT. Calling this function whilst tasks
|
|
|
|
* are still subscribed to the TWDT, or when the TWDT is already deinitialized,
|
|
|
|
* will result in an error code being returned.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: TWDT successfully deinitialized
|
|
|
|
* - ESP_ERR_INVALID_STATE: Error, tasks are still subscribed to the TWDT
|
|
|
|
* - ESP_ERR_NOT_FOUND: Error, TWDT has already been deinitialized
|
|
|
|
*/
|
|
|
|
esp_err_t esp_task_wdt_deinit();
|
2016-10-25 10:18:11 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-09 10:07:30 +00: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 prevent the TWDT from elapsing its
|
|
|
|
* timeout period. Failure to do so will result in a TWDT timeout. If the task
|
|
|
|
* being subscribed is one of the Idle Tasks, this function will automatically
|
|
|
|
* enable esp_task_wdt_reset() to called from the Idle Hook of the Idle Task.
|
|
|
|
* Calling this function whilst the TWDT is uninitialized or attempting to
|
|
|
|
* subscribe an already subscribed task will result in an error code being
|
|
|
|
* returned.
|
2017-08-30 13:11:10 +00:00
|
|
|
*
|
2017-10-09 10:07:30 +00:00
|
|
|
* @param[in] handle Handle of the task. Input NULL to subscribe the current
|
|
|
|
* running task to the TWDT
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: Successfully subscribed the task to the TWDT
|
|
|
|
* - ESP_ERR_INVALID_ARG: Error, the task is already subscribed
|
|
|
|
* - ESP_ERR_NO_MEM: Error, could not subscribe the task due to lack of
|
|
|
|
* memory
|
|
|
|
* - ESP_ERR_INVALID_STATE: Error, the TWDT has not been initialized yet
|
2016-10-25 10:18:11 +00:00
|
|
|
*/
|
2017-10-09 10:07:30 +00:00
|
|
|
esp_err_t esp_task_wdt_add(TaskHandle_t handle);
|
2016-10-25 10:18:11 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-09 10:07:30 +00: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 their own behalf, a TWDT timeout will occur. If the IDLE tasks have
|
|
|
|
* been subscribed to the TWDT, they will automatically call this function from
|
|
|
|
* their idle hooks. Calling this function from a task that has not subscribed
|
|
|
|
* to the TWDT, or when the TWDT is uninitialized will result in an error code
|
|
|
|
* being returned.
|
2017-08-30 13:11:10 +00:00
|
|
|
*
|
2017-10-09 10:07:30 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK: Successfully reset the TWDT on behalf of the currently
|
|
|
|
* running task
|
|
|
|
* - ESP_ERR_NOT_FOUND: Error, the current running task has not subscribed
|
|
|
|
* to the TWDT
|
|
|
|
* - ESP_ERR_INVALID_STATE: Error, the TWDT has not been initialized yet
|
2016-10-25 10:18:11 +00:00
|
|
|
*/
|
2017-10-09 10:07:30 +00:00
|
|
|
esp_err_t esp_task_wdt_reset();
|
2017-09-30 10:07:19 +00:00
|
|
|
|
2017-10-09 10:07:30 +00: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 esp_task_wdt_reset(). If the
|
|
|
|
* task is an IDLE task, this function will automatically disable the calling
|
|
|
|
* of esp_task_wdt_reset() from the Idle Hook. Calling this function whilst the
|
|
|
|
* TWDT is uninitialized or attempting to unsubscribe an already unsubscribed
|
|
|
|
* task from the TWDT will result in an error code being returned.
|
|
|
|
*
|
|
|
|
* @param[in] handle Handle of the task. Input NULL to unsubscribe the
|
|
|
|
* current running task.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK: Successfully unsubscribed the task from the TWDT
|
|
|
|
* - ESP_ERR_INVALID_ARG: Error, the task is already unsubscribed
|
|
|
|
* - ESP_ERR_INVALID_STATE: Error, the TWDT has not been initialized yet
|
|
|
|
*/
|
|
|
|
esp_err_t esp_task_wdt_delete(TaskHandle_t handle);
|
2016-10-25 10:18:11 +00:00
|
|
|
|
2017-08-30 13:11:10 +00:00
|
|
|
/**
|
2017-10-09 10:07:30 +00:00
|
|
|
* @brief Query whether a task is subscribed to the Task Watchdog Timer (TWDT)
|
2017-08-30 13:11:10 +00:00
|
|
|
*
|
2017-10-09 10:07:30 +00:00
|
|
|
* This function will query whether a task is currently subscribed to the TWDT,
|
|
|
|
* or whether the TWDT is initialized.
|
|
|
|
*
|
|
|
|
* @param[in] handle Handle of the task. Input NULL to query the current
|
|
|
|
* running task.
|
|
|
|
*
|
|
|
|
* @return:
|
|
|
|
* - ESP_OK: The task is currently subscribed to the TWDT
|
|
|
|
* - ESP_ERR_NOT_FOUND: The task is currently not subscribed to the TWDT
|
|
|
|
* - ESP_ERR_INVALID_STATE: The TWDT is not initialized, therefore no tasks
|
|
|
|
* can be subscribed
|
2017-08-30 13:11:10 +00:00
|
|
|
*/
|
2017-10-09 10:07:30 +00:00
|
|
|
esp_err_t esp_task_wdt_status(TaskHandle_t handle);
|
2017-09-30 10:07:19 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-09 10:07:30 +00:00
|
|
|
* @brief Reset the TWDT on behalf of the current running task, or
|
|
|
|
* subscribe the TWDT to if it has not done so already
|
|
|
|
*
|
|
|
|
* @warning This function is deprecated, use esp_task_wdt_add() and
|
|
|
|
* esp_task_wdt_reset() instead
|
|
|
|
*
|
|
|
|
* This function is similar to esp_task_wdt_reset() and will reset the TWDT on
|
|
|
|
* behalf of the current running task. However if this task has not subscribed
|
|
|
|
* to the TWDT, this function will automatically subscribe the task. Therefore,
|
|
|
|
* an unsubscribed task will subscribe to the TWDT on its first call to this
|
|
|
|
* function, then proceed to reset the TWDT on subsequent calls of this
|
|
|
|
* function.
|
2017-09-30 10:07:19 +00:00
|
|
|
*/
|
2017-10-09 10:07:30 +00:00
|
|
|
void esp_task_wdt_feed() __attribute__ ((deprecated));
|
2017-09-30 10:07:19 +00:00
|
|
|
|
2016-10-25 10:18:11 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|