fix(startup): move rtc initialization before MSPI timing tuning to improve stability

This commit is contained in:
Xiao Xufeng
2024-05-30 18:54:35 +08:00
parent fc847a0e9f
commit f81cece9d4
19 changed files with 175 additions and 133 deletions

View File

@@ -18,6 +18,15 @@ extern "C" {
* 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
*