diff options
author | Drashna Jaelre <drashna@live.com> | 2021-11-29 17:18:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 17:18:54 -0800 |
commit | b5a5bb6d743afc0be8d5b1d973158fa8fd2aec93 (patch) | |
tree | 0b5d807594dbe72bc890180d2ca3d7b5c223bcbc | |
parent | fefcad39339260321fb37a8b4df518b6746744ef (diff) |
Change default USB Polling rate to 1kHz (#15352)
-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 a43755f899..0b992ba6c5 100644 --- a/tmk_core/protocol/usb_descriptor.c +++ b/tmk_core/protocol/usb_descriptor.c @@ -450,7 +450,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = { #endif #ifndef USB_POLLING_INTERVAL_MS -# define USB_POLLING_INTERVAL_MS 10 +# define USB_POLLING_INTERVAL_MS 1 #endif /* |