1
6
7
16
17
24
25
26
27
28
29
30
31
32
33
39
40
41
47
48
49
57
58
59
60
61
/* ... */
/* ... */
/* ... */
#pragma once
#include "esp_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
uint64_t esp_gpio_reserve(uint64_t gpio_mask);
/* ... */
uint64_t esp_gpio_revoke(uint64_t gpio_mask);
/* ... */
bool esp_gpio_is_reserved(uint64_t gpio_mask);
#ifdef __cplusplus
}{...}
#endif