Select one of the symbols to view example projects that use it.
 
Outline
esp_int_wdt_init();
esp_int_wdt_cpu_init();
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_system/include/esp_private/esp_int_wdt.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #ifdef __cplusplus extern "C" { #endif /** * @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); /** * @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); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.