Skip to content

Commit 6e57662

Browse files
authored
fix compile of P4 caused from missing ")" in debug macro (espressif#10638)
1 parent 962ab3a commit 6e57662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/esp32-hal-cpu.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ bool setCpuFrequencyMhz(uint32_t cpu_freq_mhz) {
267267
: ((conf.source == SOC_CPU_CLK_SRC_APLL) ? "APLL"
268268
: ((conf.source == SOC_CPU_CLK_SRC_XTAL) ? "XTAL"
269269
#ifdef CONFIG_IDF_TARGET_ESP32P4
270-
: "17.5M"),
270+
: "17.5M")),
271271
#else
272272
: "8M")),
273273
#endif

0 commit comments

Comments
 (0)