aboutsummaryrefslogtreecommitdiff
path: root/drivers/arm/ws2812_spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/arm/ws2812_spi.c')
-rw-r--r--drivers/arm/ws2812_spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/arm/ws2812_spi.c b/drivers/arm/ws2812_spi.c
index 0e954ec50..36e08e39e 100644
--- a/drivers/arm/ws2812_spi.c
+++ b/drivers/arm/ws2812_spi.c
@@ -60,7 +60,7 @@ void ws2812_init(void) {
60 60
61 // TODO: more dynamic baudrate 61 // TODO: more dynamic baudrate
62 static const SPIConfig spicfg = { 62 static const SPIConfig spicfg = {
63 NULL, PAL_PORT(RGB_DI_PIN), PAL_PAD(RGB_DI_PIN), 63 0, NULL, PAL_PORT(RGB_DI_PIN), PAL_PAD(RGB_DI_PIN),
64 SPI_CR1_BR_1 | SPI_CR1_BR_0 // baudrate : fpclk / 8 => 1tick is 0.32us (2.25 MHz) 64 SPI_CR1_BR_1 | SPI_CR1_BR_0 // baudrate : fpclk / 8 => 1tick is 0.32us (2.25 MHz)
65 }; 65 };
66 66