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) | |
| download | qmk_firmware-296552e358b857efa40e87f45f3ff177a1f527a7.tar.gz qmk_firmware-296552e358b857efa40e87f45f3ff177a1f527a7.zip | |
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 a93342436..89df2987b 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) { | |||
| 70 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + j] = get_protocol_eq(color.r, j); | 70 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + j] = get_protocol_eq(color.r, j); |
| 71 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE + j] = get_protocol_eq(color.g, j); | 71 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE + j] = get_protocol_eq(color.g, j); |
| 72 | 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); | 72 | 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); |
| 73 | #elif (WS2812_BYTE_ORDER == WS2812_BYTE_ORDER_BGR) | ||
| 74 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + j] = get_protocol_eq(color.b, j); | ||
| 75 | for (int j = 0; j < 4; j++) tx_start[BYTES_FOR_LED * pos + BYTES_FOR_LED_BYTE + j] = get_protocol_eq(color.g, j); | ||
| 76 | 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); | ||
| 73 | #endif | 77 | #endif |
| 74 | } | 78 | } |
| 75 | 79 | ||
