summaryrefslogtreecommitdiffstats
path: root/quantum/led_matrix_types.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-04-15 12:08:52 +1000
committerGitHub <noreply@github.com>2021-04-15 12:08:52 +1000
commit53eb35b6cfb6cd1129a8d225aeb8a8a326851a2d (patch)
tree28fa3a03294e59cac2d185c03702b9d605b2f7d3 /quantum/led_matrix_types.h
parent2c0aa27e6c0db68c026d2e8d1b416bac5e9599a5 (diff)
LED Matrix: Task system (#12580)
Diffstat (limited to 'quantum/led_matrix_types.h')
-rw-r--r--quantum/led_matrix_types.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/quantum/led_matrix_types.h b/quantum/led_matrix_types.h
index be0e10bb9f..13f44b07e9 100644
--- a/quantum/led_matrix_types.h
+++ b/quantum/led_matrix_types.h
@@ -83,11 +83,12 @@ typedef struct PACKED {
typedef union {
uint32_t raw;
struct PACKED {
- uint8_t enable : 2;
- uint8_t mode : 6;
- uint16_t reserved;
- uint8_t val;
- uint8_t speed; // EECONFIG needs to be increased to support this
+ uint8_t enable : 2;
+ uint8_t mode : 6;
+ uint16_t reserved;
+ uint8_t val;
+ uint8_t speed; // EECONFIG needs to be increased to support this
+ led_flags_t flags;
};
} led_eeconfig_t;