1
6
7
8
9
10
11
12
13
14
15
20
21
28
29
30
37
38
39
45
46
47
48
52
53
54
55
56
/* ... */
#pragma once
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
/* ... */
void esp_rtc_init(void);
/* ... */
void esp_clk_init(void);
/* ... */
void esp_perip_clk_init(void);
#if !CONFIG_IDF_TARGET_ESP32C2
/* ... */
void rtc_clk_select_rtc_slow_clk(void);/* ... */
#endif
#ifdef __cplusplus
}{...}
#endif