We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a3ccb commit 1986d2eCopy full SHA for 1986d2e
ports/raspberrypi/common-hal/rgbmatrix/RGBMatrix.c
@@ -59,6 +59,8 @@ void common_hal_rgbmatrix_timer_enable(void *ptr) {
59
void common_hal_rgbmatrix_timer_disable(void *ptr) {
60
int8_t slice = ((intptr_t)ptr) & 0xff;
61
pwm_set_enabled(slice, false);
62
+ irq_set_enabled(PWM_IRQ_WRAP, false);
63
+ pwm_clear_irq(slice);
64
}
65
66
void common_hal_rgbmatrix_timer_free(void *ptr) {
0 commit comments