logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 6af8d4210c35e42643d32fcba806885e6b6efab4
parent 59ac1a08c898ca722e6c4b6fa57de1d44ea9b3ea
Author: QMK Bot <hello@qmk.fm>
Date:   Thu,  5 Sep 2024 22:47:01 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mplatforms/chibios/drivers/ws2812_spi.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/platforms/chibios/drivers/ws2812_spi.c b/platforms/chibios/drivers/ws2812_spi.c @@ -133,7 +133,7 @@ static void set_led_color_rgb(rgb_led_t color, int pos) { #endif #ifdef WS2812_RGBW for (int j = 0; j < 4; j++) - tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE * 4 + j] = get_protocol_eq(color.w, j); + tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE * 3 + j] = get_protocol_eq(color.w, j); #endif }