diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-04 22:02:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 22:02:25 -0400 |
commit | 222515f091cb146e98e67fd34338281e0dba05b4 (patch) | |
tree | 93dcaaf0c3ccde9e0c6d3e8d192bc7e8ed0e32eb /app/Kconfig | |
parent | e6d9134005588adc0d6326c7b8132b7832719990 (diff) | |
parent | bbf5a5905a973d6d23457d2e7bf15bf6bac234c3 (diff) |
Merge pull request #238 from petejohanson/core/usb-without-hid-refactor
Expose USB status without having USB HID output.
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Kconfig b/app/Kconfig index ccd40da..9398fce 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -21,12 +21,16 @@ menuconfig ZMK_USB select USB_DEVICE_STACK select USB_DEVICE_HID -if ZMK_USB +if USB config ZMK_USB_INIT_PRIORITY int "Init Priority" default 50 +endif + +if ZMK_USB + config USB_NUMOF_EP_WRITE_RETRIES default 10 |