diff options
author | QMK Bot <hello@qmk.fm> | 2021-01-15 21:43:07 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-01-15 21:43:07 +0000 |
commit | 296552e358b857efa40e87f45f3ff177a1f527a7 (patch) | |
tree | e00d93b5baa9b6099bd6194851d27b55ef683e03 /drivers/chibios/ws2812_spi.c | |
parent | bd2764cccc3986e71d182b2cf2ead5ef04f0da41 (diff) | |
parent | 3d70766327422bcd918b6940298f7557ab10d248 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'drivers/chibios/ws2812_spi.c')
-rw-r--r-- | drivers/chibios/ws2812_spi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/chibios/ws2812_spi.c b/drivers/chibios/ws2812_spi.c index a933424362..89df2987b5 100644 --- a/drivers/chibios/ws2812_spi.c +++ b/drivers/chibios/ws2812_spi.c @@ -70,6 +70,10 @@ static void set_led_color_rgb(LED_TYPE color, int pos) { for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + j] = get_protocol_eq(color.r, j); for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE + j] = get_protocol_eq(color.g, j); for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE * 2 + j] = get_protocol_eq(color.b, j); +#elif (WS2812_BYTE_ORDER == WS2812_BYTE_ORDER_BGR) + for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + j] = get_protocol_eq(color.b, j); + for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE + j] = get_protocol_eq(color.g, j); + for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE * 2 + j] = get_protocol_eq(color.r, j); #endif } |