summaryrefslogtreecommitdiff
path: root/tmk_core
AgeCommit message (Collapse)Author
2024-02-18Update GPIO macro usages in core (#23093)Ryan
2024-02-17[Core] Add OS detection callbacks (#21777)Andre Brait
2024-02-01Align VUSB suspend protocol logic (#22688)Joel Challis
2024-01-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2024-01-22Fix missing joystick.h include (#22946)Ryan
2024-01-09Remove console out endpoint (#22304)Joel Challis
2023-11-26V-USB: implement NKRO (#22398)Ryan
2023-11-26V-USB: Add generic `send_report()` function (#22323)Ryan
2023-11-12Slight refactor of joystick axis type into typedef (#22445)Ryan
2023-10-31Add "AC Next Keyboard Layout Select" consumer usage entry (macOS Globe key) ↵Ryan
(#22256)
2023-10-27[Maintenance] USB HID control packet as struct (#21688)Stefan Kerkmann
* ChibiOS: USB HID control request as dedicated struct Instead of accessing the raw USB setup packet and documenting the values as the corresponding USB HID control request fields we introduce a struct that allows direct access to the fields. This is safer and self documenting. * Rename usb_request.h to usb_types.h In the future all shared USB data types can live in this file.
2023-10-27V-USB: Fix `GET_IDLE/SET_IDLE` (#22332)Ryan
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2023-10-25V-USB: Implement `GET_PROTOCOL` and `SET_PROTOCOL` handling (#22324)Ryan
2023-10-23Separate 6KRO and NKRO report structs (#22267)Ryan
2023-10-14Prep work for NKRO report separation (#22268)Ryan
* Clean up some keyboard/userspace code * Rename `KEYBOARD_REPORT_BITS` -> `NKRO_REPORT_BITS` * Add some missing includes * Use `PACKED` define for report types * Fix incorrect function signatures for FlexRAM EEPROM driver
2023-09-25[Core] Bump mouse endpoint packet size to 16 bytes (#21711)Stefan Kerkmann
2023-09-03Remove old `IS_LED_ON/OFF()` macros (#21878)Ryan
2023-08-27Revert changes to ChibiOS Suspend Code (#21830)Drashna Jaelre
* Partially revert #19780 * Finish * Get teensy 3.5/3.6 board files too * fix lint issue * Revert "[Bug] Restore usb suspend wakeup delay (#21676)" This reverts commit e8e989fd7ad7c10e725e50ae8b0a4426e09f7f30. * Apply suggestions from code review Co-authored-by: Joel Challis <git@zvecr.com> --------- Co-authored-by: Joel Challis <git@zvecr.com>
2023-08-02[Bug] Restore usb suspend wakeup delay (#21676)Stefan Kerkmann
* Respect USB_SUSPEND_WAKEUP_DELAY on wakeup This delay wasn't honored after removing `restart_usb_driver` from the suspend and wakeup handling. It is now re-introduced in the appropriate spot, namely after issuing a remote wakeup to a sleeping host. * Remove old, unused and commented testing code
2023-08-02Fix mouse-key spamming empty reports (#21663)Stefan Kerkmann
Problem: `mousekey_task` spams empty hid reports with when a mouse key is pressed, causing resource exhaustion in the USB mouse endpoint. Cause: The check whether or not to send a new mouse report would always evaluate to true if a mouse key is pressed: 1. `mouse_report` has non-zero fields and `tmpmr` is a copy of this fields. 2. `mouse_report` is set to zero, `tmpmr` has now non-zero fields. 3. `has_mouse_report_changed` compares the two and evaluates to true 4. a mouse report is sent. Fix: The check condition of `has_mouse_report_changed` will evaluate any empty record as unchanged, as mouse report data is relative and doesn't need to return to zero. An empty report will still be send by `register_mouse` on release of all mouse buttons.
2023-07-28Update keyboard report descriptor for USB compliance (#21626)Stefan Kerkmann
Running the "HID Tests" suite of the USB 3 Command Verifier (USB3CV) tool resulted in the following error: (HID: 3.2.61) The report descriptor returned in response to a GetDescriptor(Report) must be compliant with the HID specification. Byte Number: 37h ( 55d) Data Field: 91 02 Mnemonic: Output Value: (Variable) Errors: Error: LOGICAL MAX MUST be bounded by Report Size The error stems from the fact that logical minimum and maximum are global items, which means that the next item in a report descriptor inherits the value from the previously set value. In this case the status leds item inherited the logical minimum (=0) and maximum (=255) from the keycodes item. As the status leds set a report size of 1 bit, wich can only hold a boolean, it becomes clear that this range would never fit. The fix is straightforward, we just define a appropriate logical maximum (=1), the mismatch is solved and our keyboard now passes the compliance tests. Defining the logical minimum is redundant in this case but is kept to form a logical block.
2023-07-16quantum: remove direct `quantum.h` includes (#21507)Ryan
2023-07-15Eliminate `TMK_COMMON_*` in makefiles (#21517)Ryan
2023-07-07tmk_core: remove direct `quantum.h` includes (#21465)Ryan
2023-06-27Get rid of `USB_LED_KANA` and `USB_LED_COMPOSE` (#21366)Ryan
2023-06-26[Bug] Fix non-functional S3 wakeup / resume from suspense (#19780)Stefan Kerkmann
* Update ChibiOS-Contrib for USB suspend fixes * Remove S3 wakup workaround ChibiOS OTGv1 driver has a remote wakeup bug that prevents the device to resume it's operation. 02516cbc24647f522eee975e69cc0c8a925470eb introduced a hotfix that forcefully restarted the usb driver as a workaround. This workaround broke multiple boards which do not use this driver / peripheral. With the update of ChibiOS this hotfix is now obsolete. * Remove restart_usb_driver overrides they are no longer necessary as the workaround is not needed anymore for stm32f4 * Remove unused RP_USB_USE_SOF_INTR defines The SOF interrupt is enabled dynamically by the RP2040 usb driver
2023-06-26Chibios USB: Take into account if host wants remote wakeup or not (#21287)Purdea Andrei
According to the USB 2.0 spec, remote wakeup should be disabled by default, and should only be enabled if the host explicitly requests it. The chibios driver code already takes care of storing this information, and returning it on GET_STATUS requests. However our application code has been ignoring it so far. This is a USB compliance issue, but also a bug that causes trouble in some cases: On RP2040 targets this has been causing problems if a key is held down while the keyboard is plugged in. The keyboard would fail to enumerate until all keys are released. With this change that behavior is fixed. Note that for LUFA targets this is already done correctly.
2023-06-22Move protocol makefiles into their respective folders (#21332)Ryan
* Move protocol makefiles into their respective folders * Fix USB-USB converter
2023-04-05Disable specific warnings to mitigate compilation problems with ↵Nick Brassel
`KEEP_INTERMEDIATES=yes`. (#20339)
2023-02-19Move `KC_MISSION_CONTROL`/`KC_LAUNCHPAD` keycodes to core (#19884)Joel Challis
2023-02-06Remove `IS_HOST_LED_ON` and migrate usages (#19753)Ryan
2023-01-31Fix midi after recent refactoring (#19723)Joel Challis
2023-01-30Move MIDI code out of tmk_core (#19704)Ryan
2023-01-20Fix functions with empty params (#19647)Ryan
* Fix functions with empty params * Found a bunch more
2023-01-16ChibiOS: Consolidate report sending code (#19607)Ryan
2023-01-15Fix joystick build for ChibiOS (#19602)Sergey Vlasov
`joystick_report_t` was renamed to `report_joystick_t`, but apparently one place in the code was missed.
2023-01-15usb_main.c: remove `CH_KERNEL_MAJOR` check (#19597)Ryan
2022-12-09[CI] Format code according to conventions (#19265)QMK Bot
2022-12-09Return USB HID GET_REPORT requests (#14814)Jack Humbert
Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-12-09Detect host OS based on USB fingerprint (#18463)Ruslan Sayfutdinov
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-12-09Fixed NKRO issue caused by HID_SET_PROTOCOL on Chibios platform (#17588)lokher
2022-12-03Revert WB32 ISO workaround (#19224)Joel Challis
2022-11-27Joystick feature improvements (#19052)Ryan
2022-11-12Digitizer feature improvements (#19034)Ryan
2022-10-22ChibiOS USB: Add a dummy IN callback to work around LLD bugs (#18811)Sergey Vlasov
In #18631 some IN notification callbacks that were doing nothing were removed, which should be a valid thing to do (ChibiOS HAL checks the `in_cb` and `out_cb` pointers for being non-NULL before invoking those optional callbacks). However, it turned out that some less popular USB LLDs (KINETIS and MIMXRT1062) have their own checks for those pointers, and (incorrectly) skip the ChibiOS callback handling when those pointers are NULL, which breaks the code for the `USB_USE_WAIT` configuration option (the waiting thread never gets resumed if the corresponding callback pointer is NULL). Add those dummy callbacks again (but use a single function for all of them instead of individual ones for each endpoint); this restores the KINETIS and MIMXRT1062 boards to the working state while the LLDs are getting fixed.
2022-10-19Widen the ARM Cortex-M family support. Allow USB peripheral change. (#18767)Nick Brassel
2022-10-15LUFA: Consolidate report sending code (#18629)Ryan
2022-10-13Fix joystick functionality for ChibiOS and OTG (Blackpill) (#18631)Ryan
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2022-10-09Make MIDI output endpoint use the out direction (#18654)nezumee
2022-10-06Refactor `send_extra` (#18615)Ryan