Skip to content

Commit e5f2cdf

Browse files
Merge pull request #1 from Twisted-Fields/dev
Fix incomplete PWM initialization for 8th slice.
2 parents 6f90ee2 + 2d258e3 commit e5f2cdf

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)