Skip to content

Commit 2d258e3

Browse files
committed
Fix incomplete PWM initialization for 8th slice.
1 parent 6f90ee2 commit 2d258e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/drivers/hardware_specific/rp2040_mcu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void syncSlices() {
9191
pwm_set_counter(i, 0);
9292
}
9393
// enable all slices
94-
pwm_set_mask_enabled(0x7F);
94+
pwm_set_mask_enabled(0xFF);
9595
}
9696

9797

0 commit comments

Comments
 (0)