aboutsummaryrefslogtreecommitdiff
path: root/common/debug_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/debug_config.h')
-rw-r--r--common/debug_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/debug_config.h b/common/debug_config.h
index 43e4c5c55..28bc34cd5 100644
--- a/common/debug_config.h
+++ b/common/debug_config.h
@@ -27,7 +27,6 @@ extern "C" {
27 27
28/* NOTE: Not portable. Bit field order depends on implementation */ 28/* NOTE: Not portable. Bit field order depends on implementation */
29typedef union { 29typedef union {
30 uint8_t raw;
31 struct { 30 struct {
32 bool enable:1; 31 bool enable:1;
33 bool matrix:1; 32 bool matrix:1;
@@ -35,6 +34,7 @@ typedef union {
35 bool mouse:1; 34 bool mouse:1;
36 uint8_t reserved:4; 35 uint8_t reserved:4;
37 }; 36 };
37 uint8_t raw;
38} debug_config_t; 38} debug_config_t;
39extern debug_config_t debug_config; 39extern debug_config_t debug_config;
40 40