summaryrefslogtreecommitdiff
path: root/tmk_core
Commit message (Collapse)AuthorAge
* Joystick feature improvements (#19052)Ryan2022-11-27
|
* Digitizer feature improvements (#19034)Ryan2022-11-12
|
* ChibiOS USB: Add a dummy IN callback to work around LLD bugs (#18811)Sergey Vlasov2022-10-22
| | | | | | | | | | | | | | | | 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.
* Widen the ARM Cortex-M family support. Allow USB peripheral change. (#18767)Nick Brassel2022-10-19
|
* LUFA: Consolidate report sending code (#18629)Ryan2022-10-15
|
* Fix joystick functionality for ChibiOS and OTG (Blackpill) (#18631)Ryan2022-10-13
| | | Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* Make MIDI output endpoint use the out direction (#18654)nezumee2022-10-09
|
* Refactor `send_extra` (#18615)Ryan2022-10-06
|
* Refactor more host code (programmable button & digitizer) (#18565)Ryan2022-10-05
|
* [Core] ChibiOS: Fix USB bus disconnect handling (#18566)Stefan Kerkmann2022-10-02
|
* Start Bluetooth API (#18366)Ryan2022-09-29
|
* Further refactoring of joystick feature (#18437)Ryan2022-09-27
|
* Chromeos keycodes (#18212)Joshua Diamond2022-09-17
|
* Merge remote-tracking branch 'origin/master' into developJoshua Diamond2022-09-12
|\
| * GMMK2: Fix 'ISO' within product name (#18322)Joel Challis2022-09-10
| |
* | Move Bluetooth-related function calls up to host/keyboard level (#18274)Ryan2022-09-07
| | | | | | | | | | | | | | | | | | | | | | * Move Bluetooth-related function calls up to host/keyboard level * Remove pointless set_output() call * Move bluetooth (rn42) init to end of keyboard_init() * Enable SPI/UART for ChibiOS targets * Some more slight tweaks
* | Adjust `EXTRAKEY_ENABLE` ifdefs for `send_extra()` (#18249)Ryan2022-09-02
| |
* | Simplify extrakeys sending at the host driver level (#18230)Ryan2022-09-02
| | | | | | | | | | | | | | | | | | * Simplify extrakeys sending at the host driver level * There are two arguments here * Wrong syntax * Adjust keyboards which use a custom host driver
* | Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ARRAY_SIZE and CEILING utility macros * Apply a coccinelle patch to use ARRAY_SIZE * fix up some straggling items * Fix 'make test:secure' * Enhance ARRAY_SIZE macro to reject acting on pointers The previous definition would not produce a diagnostic for ``` int *p; size_t num_elem = ARRAY_SIZE(p) ``` but the new one will. * explicitly get definition of ARRAY_SIZE * Convert to ARRAY_SIZE when const is involved The following spatch finds additional instances where the array is const and the division is by the size of the type, not the size of the first element: ``` @ rule5a using "empty.iso" @ type T; const T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) @ rule6a using "empty.iso" @ type T; const T[] E; @@ - sizeof(E)/sizeof(T) + ARRAY_SIZE(E) ``` * New instances of ARRAY_SIZE added since initial spatch run * Use `ARRAY_SIZE` in docs (found by grep) * Manually use ARRAY_SIZE hs_set is expected to be the same size as uint16_t, though it's made of two 8-bit integers * Just like char, sizeof(uint8_t) is guaranteed to be 1 This is at least true on any plausible system where qmk is actually used. Per my understanding it's universally true, assuming that uint8_t exists: https://stackoverflow.com/questions/48655310/can-i-assume-that-sizeofuint8-t-1 * Run qmk-format on core C files touched in this branch Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-29
|\|
| * Redefinition of MIN is avoided in midi.c (#18203)3araht2022-08-29
| |
* | Switch over MANUFACTURER and PRODUCT to string literals (#18183)Ryan2022-08-28
|/
* Remove tmk_core 'serial' code (#17866)Joel Challis2022-08-08
|
* [Core] `STM32_USB_USE_OTG1` => `USB_ENDPOINTS_ARE_REORDERABLE` (#17647)Nick Brassel2022-08-04
|
* [Core] Add Raspberry Pi RP2040 support (#14877)Stefan Kerkmann2022-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Disable RESET keycode because of naming conflicts * Add Pico SDK as submodule * Add RP2040 build support to QMK * Adjust USB endpoint structs for RP2040 * Add RP2040 bootloader and double-tap reset routine * Add generic and pro micro RP2040 boards * Add RP2040 onekey keyboard * Add WS2812 PIO DMA enabled driver and documentation Supports regular and open-drain output configuration. RP2040 GPIOs are sadly not 5V tolerant, so this is a bit use-less or needs extra hardware or you take the risk to fry your hardware. * Adjust SIO Driver for RP2040 * Adjust I2C Driver for RP2040 * Adjust SPI Driver for RP2040 * Add PIO serial driver and documentation * Add general RP2040 documentation * Apply suggestions from code review Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Nick Brassel <nick@tzarc.org>
* Make default layer size 16-bit (#15286)Drashna Jaelre2022-06-19
| | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Add support for large Mouse Reports (#16371)Drashna Jaelre2022-06-08
| | | | Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Check for ongoing transfers on the OUT endpoint (#16974)Stefan Kerkmann2022-05-14
| | | | | | | | | | | | | | | | ...when attempting to start a receiving USB transfer. Previously, we would check on the IN endpoint which is the transmitting part of the USB endpoint. This is wrong and lead to two USB transfers being started immediately after each other in case of e.g. RAW HID endpoints: 1. When finishing an OUT transfer the low level USB driver calls the out_cb callback, which in turn initiates another OUT transfer by calling qmkusbDataReceived. 2. When the raw hid receive channel runs empty inside the raw_hid task, another OUT transfer is started to potentially fill the channel again. This happens by calling ibnotify. Both events occur directly after each other, thus triggering the bug.
* Joystick: Simplify report descriptor and clean up error messages (#16926)Ryan2022-04-26
|
* [CI] Format code according to conventions (#16914)QMK Bot2022-04-22
|
* Chibios USB protocol: allow overriding RAW Capacity (#16339)dexter932022-04-22
|
* Fixed usb read loops not reading until timeout (#16827)Sascha2022-04-10
| | | * the size variable was redeclared (hiding the variable of the outside scope) and therefore the while check was always false, so the compiler just removed the do while loop, but it would be better to read all data and only exit the task, after this is done
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-03-19
|\
| * VUSB - Use correct endpoint poll for VIA (#16691)Joel Challis2022-03-19
| |
* | [Core] Move `has_mouse_report_changed` function to `report.c` (#16543)Drashna Jaelre2022-03-14
|/ | | | | | | * Move 'has_mouse_report_changed' checkto report.c * change mousekeys to use memcpy * fix linting issues
* Fix use of ISSI driver config before init (#16493)Joel Challis2022-03-03
|
* Format code according to conventions (#16421)QMK Bot2022-02-21
|
* Format code according to conventions (#16322)QMK Bot2022-02-12
|
* Migrate more makefile utilities to builddefs sub-directory (#16002)Joel Challis2022-02-10
|
* Modify the output of the size checks. (#16290)Nick Brassel2022-02-10
|
* ChibiOS: add support for HID Programmable Buttons (#15787)Thomas Weißschuh2022-02-04
| | | | | | | | | | * ChibiOS: add support for HID Programmable Buttons Fixes #15596 * Enable SHARED_ENDPOINT when PROGRAMMABLE_BUTTON is enabled The Programmable Button driver expects the shared EP to be enabled. So enforce this invariant.
* Rename `AdafruitBLE` to `BluefruitLE` (#16127)Ryan2022-01-30
|
* [Core] ChibiOS: shorten USB disconnect state on boot to 50ms (#15805)Stefan Kerkmann2022-01-10
|
* Refactor `bootloader_jump()` implementations (#15450)Ryan2021-12-27
| | | | | | | * Refactor `bootloader_jump()` implementations * Fix tests? * Rename `atmel-samba` to `md-boot`
* Migrate RN42 to UART driver and refactor (#15492)Ryan2021-12-22
|
* Remove Deprecated USB Polling comment from vusb.c (#15420)Drashna Jaelre2021-12-07
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-30
|\
| * Add missing virtser_init() to ChibiOS code (#15356)Ryan2021-11-30
| |
* | Change default USB Polling rate to 1kHz (#15352)Drashna Jaelre2021-11-29
|/
* [Bug] Fix timer include in override_wiring.c (#15221)Drashna Jaelre2021-11-19
| | | | | * [Bug] Fix timer include in override_wiring.c * add platforms to keep parity with old method