Select one of the symbols to view example projects that use it.
 
Outline
#include "sdkconfig.h"
esp_rtc_init();
esp_clk_init();
esp_perip_clk_init();
rtc_clk_select_rtc_slow_clk();
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_system/port/include/esp_clk_internal.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif /** * @file esp_clk_internal.h * * Private clock-related functions *//* ... */ /** * @brief Initialize rtc-related settings * * Called from cpu_start.c, not intended to be called from other places. * This function configures the power related stuff. * After this the MSPI timing tuning can be done. *//* ... */ void esp_rtc_init(void); /** * @brief Initialize clock-related settings * * Called from cpu_start.c, not intended to be called from other places. * This function configures the CPU clock, RTC slow and fast clocks, and * performs RTC slow clock calibration. *//* ... */ void esp_clk_init(void); /** * @brief Disables clock of some peripherals * * Called from cpu_start.c, not intended to be called from other places. * This function disables clock of useless peripherals when cpu starts. *//* ... */ void esp_perip_clk_init(void); #if !CONFIG_IDF_TARGET_ESP32C2 /* Selects an external clock source (32 kHz) for RTC. * Only internal use in unit test. *//* ... */ void rtc_clk_select_rtc_slow_clk(void);/* ... */ #endif #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.