Files
esp-idf/components/esp_system/include/esp_private/esp_int_wdt.h
T

34 lines
765 B
C
Raw Normal View History

2022-05-05 15:38:49 +08:00
/*
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2016-10-25 18:18:11 +08:00
2022-05-05 17:04:59 +08:00
#pragma once
2016-10-25 18:18:11 +08:00
#ifdef __cplusplus
extern "C" {
#endif
/**
2022-05-05 17:04:59 +08:00
* @brief Initialize the non-CPU-specific parts of interrupt watchdog.
*
* This function is automatically called during application startup if the
* interrupt watchdog is enabled in menuconfig.
*/
void esp_int_wdt_init(void);
2016-10-21 17:59:57 +08:00
/**
2022-05-05 17:04:59 +08:00
* @brief Enable the interrupt watchdog on the current CPU.
*
* This function is automatically called during application startup for each CPU
* that has enabled the interrupt watchdog in menuconfig.
*
* @note esp_int_wdt_init() must be called first before calling this function
*/
void esp_int_wdt_cpu_init(void);
2016-10-25 18:18:11 +08:00
#ifdef __cplusplus
}
#endif