Skip to content

Commit 3430543

Browse files
ellenspthinkyhead
authored andcommitted
✏️ Fix comma typo (MarlinFirmware#27138)
1 parent 23fda5b commit 3430543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/HAL/AVR/fast_pwm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void MarlinHAL::set_pwm_frequency(const pin_t pin, const uint16_t f_desired) {
150150
else {
151151
if (p == 32 || p == 128) continue; // Skip TIMER2 specific prescalers when not TIMER2
152152
const uint16_t rft = (F_CPU) / (p * f_desired);
153-
DEBUG_ECHOLNPGM("(Not Timer 2) F_CPU=" STRINGIFY(F_CPU), " prescaler=", p, " f_desired=", f_desired);
153+
DEBUG_ECHOLNPGM("(Not Timer 2) F_CPU=", STRINGIFY(F_CPU), " prescaler=", p, " f_desired=", f_desired);
154154
res_fast_temp = rft - 1;
155155
res_pc_temp = rft / 2;
156156
}

0 commit comments

Comments
 (0)