From 58a9c84d6bb22c7544231f60acace4a85d6f8dd2 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Wed, 1 Apr 2020 21:06:22 +0100 Subject: Strip out features to allow minimum firmware sizes (#8645) --- tmk_core/protocol/vusb/vusb.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmk_core/protocol/vusb/vusb.c') diff --git a/tmk_core/protocol/vusb/vusb.c b/tmk_core/protocol/vusb/vusb.c index 95c59d493..00314ebe8 100644 --- a/tmk_core/protocol/vusb/vusb.c +++ b/tmk_core/protocol/vusb/vusb.c @@ -158,10 +158,12 @@ typedef struct { } __attribute__((packed)) vusb_mouse_report_t; static void send_mouse(report_mouse_t *report) { +#if defined(MOUSE_ENABLE) vusb_mouse_report_t r = {.report_id = REPORT_ID_MOUSE, .report = *report}; if (usbInterruptIsReady3()) { usbSetInterrupt3((void *)&r, sizeof(vusb_mouse_report_t)); } +#endif } #ifdef EXTRAKEY_ENABLE -- cgit v1.2.3