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