File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -259,6 +259,7 @@ bool setCpuFrequencyMhz(uint32_t cpu_freq_mhz) {
259
259
if (apb_change_callbacks ) {
260
260
triggerApbChangeCallback (APB_AFTER_CHANGE , capb , apb );
261
261
}
262
+ // clang-format off
262
263
#ifdef SOC_CLK_APLL_SUPPORTED
263
264
log_d (
264
265
"%s: %u / %u = %u Mhz, APB: %u Hz" ,
@@ -268,7 +269,7 @@ bool setCpuFrequencyMhz(uint32_t cpu_freq_mhz) {
268
269
#ifdef CONFIG_IDF_TARGET_ESP32P4
269
270
: "17.5M" ),
270
271
#else
271
- : "8M" )),
272
+ : "8M" )),
272
273
#endif
273
274
conf .source_freq_mhz , conf .div , conf .freq_mhz , apb
274
275
);
@@ -278,6 +279,7 @@ bool setCpuFrequencyMhz(uint32_t cpu_freq_mhz) {
278
279
conf .source_freq_mhz , conf .div , conf .freq_mhz , apb
279
280
);
280
281
#endif
282
+ // clang-format on
281
283
return true;
282
284
}
283
285
You can’t perform that action at this time.
0 commit comments