summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-06-28 09:51:56 +0200
committertmk <nobody@nowhere>2012-06-28 09:51:56 +0200
commita9a3610dd4a168e473d2d6a2eb3fbc37aabb46c9 (patch)
tree89f274c6cf58a9b4fcd8d768dda78da10afac3b9 /common
parenteffa5914bff71fa7ad6506271c9ba4baa32a1eca (diff)
downloadqmk_firmware-a9a3610dd4a168e473d2d6a2eb3fbc37aabb46c9.tar.gz
qmk_firmware-a9a3610dd4a168e473d2d6a2eb3fbc37aabb46c9.tar.xz
Add LUFA mouse feature and fix mouse report.
- add LUFA boot mouse feature - remove report_id from mouse report - fix LUFA descriptor
Diffstat (limited to 'common')
-rw-r--r--common/report.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/report.h b/common/report.h
index b85b86c5f..45f5c0b88 100644
--- a/common/report.h
+++ b/common/report.h
@@ -82,15 +82,14 @@ typedef struct {
uint8_t mods;
uint8_t rserved;
uint8_t keys[REPORT_KEYS];
-} report_keyboard_t;
+} __attribute__ ((packed)) report_keyboard_t;
typedef struct {
- uint8_t report_id;
uint8_t buttons;
int8_t x;
int8_t y;
int8_t v;
int8_t h;
-} report_mouse_t;
+} __attribute__ ((packed)) report_mouse_t;
#endif