diff options
Diffstat (limited to 'drivers/led/issi/is31fl3733.h')
-rw-r--r-- | drivers/led/issi/is31fl3733.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/led/issi/is31fl3733.h b/drivers/led/issi/is31fl3733.h index 603d505a1..64fd38eb1 100644 --- a/drivers/led/issi/is31fl3733.h +++ b/drivers/led/issi/is31fl3733.h | |||
@@ -20,6 +20,7 @@ | |||
20 | 20 | ||
21 | #include <stdint.h> | 21 | #include <stdint.h> |
22 | #include <stdbool.h> | 22 | #include <stdbool.h> |
23 | #include "progmem.h" | ||
23 | 24 | ||
24 | typedef struct is31_led { | 25 | typedef struct is31_led { |
25 | uint8_t driver : 2; | 26 | uint8_t driver : 2; |
@@ -28,7 +29,7 @@ typedef struct is31_led { | |||
28 | uint8_t b; | 29 | uint8_t b; |
29 | } __attribute__((packed)) is31_led; | 30 | } __attribute__((packed)) is31_led; |
30 | 31 | ||
31 | extern const is31_led g_is31_leds[DRIVER_LED_TOTAL]; | 32 | extern const is31_led __flash g_is31_leds[DRIVER_LED_TOTAL]; |
32 | 33 | ||
33 | void IS31FL3733_init(uint8_t addr, uint8_t sync); | 34 | void IS31FL3733_init(uint8_t addr, uint8_t sync); |
34 | bool IS31FL3733_write_register(uint8_t addr, uint8_t reg, uint8_t data); | 35 | bool IS31FL3733_write_register(uint8_t addr, uint8_t reg, uint8_t data); |