mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fix_esp32h2_apb_frequency_temp_fix' into 'master'
[bugfix] esp32h2: fix apb freq err temporarily See merge request espressif/esp-idf!14982
This commit is contained in:
commit
ec31f2338b
@ -10,10 +10,13 @@ menu "ESP32H2-Specific"
|
||||
|
||||
config ESP32H2_DEFAULT_CPU_FREQ_16
|
||||
bool "16 MHz"
|
||||
depends on IDF_ENV_FPGA #ESP32H2-TODO: IDF-3786
|
||||
config ESP32H2_DEFAULT_CPU_FREQ_32
|
||||
bool "32 MHz"
|
||||
depends on IDF_ENV_FPGA #ESP32H2-TODO: IDF-3786
|
||||
config ESP32H2_DEFAULT_CPU_FREQ_64
|
||||
bool "64 MHz"
|
||||
depends on IDF_ENV_FPGA #ESP32H2-TODO: IDF-3786
|
||||
config ESP32H2_DEFAULT_CPU_FREQ_96
|
||||
bool "96 MHz"
|
||||
depends on !IDF_ENV_FPGA
|
||||
|
@ -228,7 +228,7 @@
|
||||
#if CONFIG_IDF_ENV_FPGA
|
||||
#define APB_CLK_FREQ ( 32*1000000 )
|
||||
#else
|
||||
#define APB_CLK_FREQ ( 96*1000000 )
|
||||
#define APB_CLK_FREQ ( 48*1000000 ) //ESP32H2-TODO: IDF-3786
|
||||
#endif
|
||||
#define REF_CLK_FREQ ( 1000000 )
|
||||
#define RTC_CLK_FREQ (17.5*1000000)
|
||||
|
Loading…
Reference in New Issue
Block a user