1
6
7
8
9
10
11
12
13
14
15
20
21
22
42
43
44
47
48
49
50
51
/* ... */
#pragma once
#include <stdint.h>
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
#if CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL
/* ... */
void gpio_sleep_mode_config_apply(void);
/* ... */
void gpio_sleep_mode_config_unapply(void);
/* ... */
#endif
/* ... */
void esp_deep_sleep_wakeup_io_reset(void);
#ifdef __cplusplus
}{...}
#endif