aboutsummaryrefslogtreecommitdiff
path: root/drivers/led/apa102.c
diff options
context:
space:
mode:
authorHorrorTroll <sonicvipduc@gmail.com>2025-01-08 23:51:28 +0700
committerGitHub <noreply@github.com>2025-01-08 08:51:28 -0800
commitc1565bebcef26c400801caa4447012c2b9fa0a62 (patch)
treef4657f3f8e74f6d23ab2cc097e854d6799ab04c7 /drivers/led/apa102.c
parent8247f9e11446bfc6655b52177678eff7529c27dc (diff)
Patch up issue when compile with APA102 driver (#24800)
Diffstat (limited to 'drivers/led/apa102.c')
-rw-r--r--drivers/led/apa102.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/led/apa102.c b/drivers/led/apa102.c
index 050609263d..6e87d48b96 100644
--- a/drivers/led/apa102.c
+++ b/drivers/led/apa102.c
@@ -122,7 +122,7 @@ void apa102_init(void) {
gpio_set_pin_output(APA102_CI_PIN);
}
-void apa102_set_color(uint16_t index, uint8_t red, uint8_t green, uint8_t blue) {
+void apa102_set_color(int index, uint8_t red, uint8_t green, uint8_t blue) {
apa102_leds[index].r = red;
apa102_leds[index].g = green;
apa102_leds[index].b = blue;