diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2024-06-03 14:35:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 22:35:46 +1000 |
commit | 8253697a6389aaec73f85a29dd25247b32389502 (patch) | |
tree | 9a78f6e42fe53c81ca6c310ec88b8e5ee90ba02c /tmk_core/protocol/usb_descriptor.c | |
parent | 282253a7e0c51717234bd64159a37ee527d16dc2 (diff) |
[FIX] ChibiOS: USB Digitizer and Joystick IN endpoint compilation (#23854)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'tmk_core/protocol/usb_descriptor.c')
-rw-r--r-- | tmk_core/protocol/usb_descriptor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c index 0e2e63ad8e..7efd085ea3 100644 --- a/tmk_core/protocol/usb_descriptor.c +++ b/tmk_core/protocol/usb_descriptor.c @@ -990,7 +990,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = { .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), .EndpointSize = JOYSTICK_EPSIZE, .PollingIntervalMS = USB_POLLING_INTERVAL_MS - } + }, #endif #if defined(DIGITIZER_ENABLE) && !defined(DIGITIZER_SHARED_EP) |