summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/report.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/report.h')
-rw-r--r--tmk_core/protocol/report.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/tmk_core/protocol/report.h b/tmk_core/protocol/report.h
index 543c44e33c..e4526e4ee6 100644
--- a/tmk_core/protocol/report.h
+++ b/tmk_core/protocol/report.h
@@ -235,11 +235,14 @@ typedef struct {
} __attribute__((packed)) report_digitizer_t;
typedef struct {
-#if JOYSTICK_AXES_COUNT > 0
-# if JOYSTICK_AXES_RESOLUTION > 8
- int16_t axes[JOYSTICK_AXES_COUNT];
+#ifdef JOYSTICK_SHARED_EP
+ uint8_t report_id;
+#endif
+#if JOYSTICK_AXIS_COUNT > 0
+# if JOYSTICK_AXIS_RESOLUTION > 8
+ int16_t axes[JOYSTICK_AXIS_COUNT];
# else
- int8_t axes[JOYSTICK_AXES_COUNT];
+ int8_t axes[JOYSTICK_AXIS_COUNT];
# endif
#endif