qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit 9d4347b699daab3be51f380b732e853126f817e8
parent 32c90bf026f6775d71ea8c41d7db21ad1e8a1170
Author: Drashna Jaelre <drashna@live.com>
Date:   Wed,  6 Sep 2023 10:30:10 -0700

Enable RP2040 support for apa102 RGB LED driver (#21908)


Diffstat:
Mdrivers/led/apa102.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/led/apa102.c b/drivers/led/apa102.c @@ -24,7 +24,7 @@ # elif defined(PROTOCOL_CHIBIOS) # include "hal.h" # include "chibios_config.h" -# if defined(STM32F0XX) || defined(STM32F1XX) || defined(STM32F3XX) || defined(STM32F4XX) || defined(STM32L0XX) || defined(GD32VF103) +# if defined(STM32F0XX) || defined(STM32F1XX) || defined(STM32F3XX) || defined(STM32F4XX) || defined(STM32L0XX) || defined(GD32VF103) || defined(MCU_RP) # define APA102_NOPS (100 / (1000000000L / (CPU_CLOCK / 4))) // This calculates how many loops of 4 nops to run to delay 100 ns # else # error APA102_NOPS configuration required