Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-27 | [BUG] Allow multiple IS31FL3741 drivers per board in rgb_matrix (#20988) | André Greiner-Petter | |
2023-05-20 | Support PS/2 mouse 9-bit output with MOUSE_EXTENDED_REPORT (#20734) | Daniel Kao | |
2023-05-10 | Format code according to conventions (#20846) | QMK Bot | |
2023-05-10 | OLED Driver improvements (#20331) | Drashna Jaelre | |
Co-authored-by: Sergey Vlasov <sigprof@gmail.com> | |||
2023-04-30 | [Bug] Add Develop is31fl3736 multi drivers (#20642) | Xelus22 | |
2023-04-30 | Add required string header file (#20638) | Albert Y | |
2023-04-30 | [Core] Clean up ISSI drivers, Add IS31FL3736 support (#20572) | Xelus22 | |
Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com> | |||
2023-04-12 | [Bug] Fix compilation issues with PS/2 driver on F4x1 controllers (#20433) | Drashna Jaelre | |
2023-04-03 | Added PMW3320 driver (#19543) | Vladislav Marchenko | |
2023-03-25 | [Cleanup] Quantum Painter (#19825) | Pablo Martínez | |
Co-authored-by: Nick Brassel <nick@tzarc.org> | |||
2023-03-22 | Update Doxygen comments for some headers (#20194) | Ryan | |
2023-03-20 | Quantum Painter QoL enhancements -- auto-poweroff, auto-flush, buffer sizing ↵ | Nick Brassel | |
(#20013) | |||
2023-03-20 | Clean up APA102 config and add DD mapping (#20159) | Ryan | |
2023-03-01 | Improve robustness of AW20216 driver (#19849) | Huckies | |
* added soft reset and auto lowpower for AW20216 | |||
2023-01-31 | Remove usages of config_common.h from config.h files. (#19714) | Nick Brassel | |
2023-01-20 | Fix functions with empty params (#19647) | Ryan | |
* Fix functions with empty params * Found a bunch more | |||
2023-01-14 | Add RGB565 and RGB888 color support to Quantum Painter (#19382) | David Hoelscher | |
2022-12-12 | Cleanup pmw3389.c (#19301) | Alabastard-64 | |
2022-12-10 | Add `*_RIGHT` configuration for PMW33XX driver (#19243) | Pablo Martínez | |
2022-11-14 | Add default limit to OLED dirty processing (#19068) | Joel Challis | |
2022-11-13 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-11-14 | fix: mousekey doesn't work with trackpoint (#18474) | Klesh Wong | |
Co-authored-by: Nick Brassel <nick@tzarc.org> | |||
2022-11-14 | Fix oled_render to render all dirty blocks. (#18887) | Richard Nash | |
2022-10-29 | Revert "mcp23018: add return status to init (#18178)" (#18709) | Joel Challis | |
This reverts commit 3fffa51554556edc9ca53bc04ef45abe87d3d3c9. | |||
2022-10-21 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-10-20 | Keychron Q3 I2C & CKLED2001 transfer speedup (#18780) | Stefan | |
2022-10-21 | ws2812: replace RGBLED_NUM with driver-owned constant to decouple driver ↵ | Thomas Kriechbaumer | |
from RGBLEDs/RGBMATRIX defines (#18036) | |||
2022-10-14 | Make QP driver init functions weak. (#18717) | Nick Brassel | |
2022-10-13 | mcp23018: add return status to init (#18178) | JohSchneider | |
2022-10-07 | fix typo in solenoid.h (#18635) | Giuseppe Rota | |
2022-10-05 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-10-05 | fix: ps2_interrupt.c failed to compile (#18597) | Klesh Wong | |
2022-10-04 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-10-05 | define `oled_write_ln_P` as `oled_write_ln` for non-AVR MCUs (#18589) | Less/Rikki | |
2022-09-29 | Format code according to conventions (#18533) | QMK Bot | |
2022-09-29 | Start Bluetooth API (#18366) | Ryan | |
2022-09-23 | Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399) | Ryan | |
2022-09-19 | [QP] Add RGB565 surface. Docs clarification, cleanup, tabsification, and ↵ | Nick Brassel | |
reordering. (#18396) | |||
2022-09-14 | Fix cirque tap from secondary side (#18351) | Dasky | |
2022-09-09 | RN42 driver: small cleanups (#18310) | Ryan | |
* RN42 driver: small cleanups * Include header * Fix mouse report per RN42 UG * Spacing for consistency | |||
2022-09-07 | Move Bluetooth-related function calls up to host/keyboard level (#18274) | Ryan | |
* 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 | |||
2022-08-30 | Use a macro to compute the size of arrays at compile time (#18044) | Jeff Epler | |
* 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> | |||
2022-08-29 | [Core] Introduce pointing device specific debug messages (#17663) | Stefan Kerkmann | |
2022-08-13 | Add led matrix support for CKLED2001 (#17643) | lokher | |
2022-08-12 | Create generic Pointing Device Pin defines (#17776) | Drashna Jaelre | |
2022-08-04 | Fixup compilation of printf-like functions with uint32_t args. (#17904) | Nick Brassel | |
2022-07-31 | Format code according to conventions (#17869) | QMK Bot | |
2022-07-31 | Add ST7735 driver to Quantum Painter (#17848) | David Hoelscher | |
2022-07-31 | Fix POINTING_DEVICE_GESTURES_SCROLL_ENABLE typo (#17850) | Daniel Kao | |
* Fix typo for POINTING_DEVICE_GESTURES_SCROLL_ENABLE Follow the name written in documentation which follows POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE * Reword the blurb about POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE in docs | |||
2022-07-29 | Implement relative mode for Cirque trackpad (#17760) | Drzony | |