Skip to content

Commit 9203b66

Browse files
authored
Merge pull request #7815 from bill88t/intercontinental-ballistic-typo
24Mhz -> 240Mhz
2 parents 5909cea + b746fd0 commit 9203b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/espressif/common-hal/microcontroller/Processor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ float common_hal_mcu_processor_get_voltage(void) {
6464

6565
uint32_t common_hal_mcu_processor_get_frequency(void) {
6666
#if defined(CONFIG_IDF_TARGET_ESP32)
67-
return CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ * 100000;
67+
return CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ * 1000000;
6868
#elif defined(CONFIG_IDF_TARGET_ESP32C3)
6969
return CONFIG_ESP32C3_DEFAULT_CPU_FREQ_MHZ * 1000000;
7070
#elif defined(CONFIG_IDF_TARGET_ESP32S2)

0 commit comments

Comments
 (0)