From 5c5e30961163e1252fb0a1b74088fbf85cb0a945 Mon Sep 17 00:00:00 2001 From: jeroen Date: Wed, 7 May 2025 11:05:18 +0200 Subject: [PATCH] add support for timer 8 --- src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp b/src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp index 6afbf345..ecdf8a18 100644 --- a/src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp +++ b/src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp @@ -93,7 +93,7 @@ void syncSlices() { pwm_set_counter(i, 0); } // enable all slices - pwm_set_mask_enabled(0xFF); + pwm_set_mask_enabled(0xFFF); }