summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authortrwnh <a@trwnh.com>2022-05-30 23:46:21 -0500
committerGitHub <noreply@github.com>2022-05-31 14:46:21 +1000
commitb554e4b612d24109ce714554a306043a01382cbd (patch)
tree688f0d6e31c958b3ad33d13737d90861bbe93ba7 /drivers
parent650be92cf96440920ebf1079c11f2f36c4a9edc1 (diff)
Change AW20216 SPI Mode from 0 to 3, to fix RGB LEDs on GMMK Pro (#17262)
Diffstat (limited to 'drivers')
-rw-r--r--drivers/led/aw20216.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/led/aw20216.c b/drivers/led/aw20216.c
index 59389cdcd6..448accdcd3 100644
--- a/drivers/led/aw20216.c
+++ b/drivers/led/aw20216.c
@@ -63,7 +63,7 @@ bool g_pwm_buffer_update_required[DRIVER_COUNT] = {false};
bool AW20216_write(pin_t cs_pin, uint8_t page, uint8_t reg, uint8_t* data, uint8_t len) {
static uint8_t s_spi_transfer_buffer[2] = {0};
- if (!spi_start(cs_pin, false, 0, AW_SPI_DIVISOR)) {
+ if (!spi_start(cs_pin, false, 3, AW_SPI_DIVISOR)) {
spi_stop();
return false;
}