1
6
7
8
9
10
11
12
13
14
15
16
17
18
22
23
24
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* ... */
#pragma once
#include "sdkconfig.h"
#include "esp_err.h"
#if CONFIG_ESP_TASK_WDT_EN
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef void* twdt_ctx_t;
/* ... */
typedef void (*twdt_isr_callback)(void*);
/* ... */
esp_err_t esp_task_wdt_stop(void);
/* ... */
esp_err_t esp_task_wdt_restart(void);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif