Skip to content

Commit

Permalink
fix compile of P4 caused from missing ")" in debug macro (#10638)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Nov 25, 2024
1 parent 962ab3a commit 6e57662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp32/esp32-hal-cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ bool setCpuFrequencyMhz(uint32_t cpu_freq_mhz) {
: ((conf.source == SOC_CPU_CLK_SRC_APLL) ? "APLL"
: ((conf.source == SOC_CPU_CLK_SRC_XTAL) ? "XTAL"
#ifdef CONFIG_IDF_TARGET_ESP32P4
: "17.5M"),
: "17.5M")),
#else
: "8M")),
#endif
Expand Down

0 comments on commit 6e57662

Please sign in to comment.