summaryrefslogtreecommitdiffstats
path: root/drivers
Commit message (Collapse)AuthorAgeFilesLines
* Format code according to conventions (#20846)QMK Bot2023-05-101-2/+1
|
* OLED Driver improvements (#20331)Drashna Jaelre2023-05-102-55/+392
| | | | Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* [Bug] Add Develop is31fl3736 multi drivers (#20642)Xelus222023-04-301-8/+8
|
* Add required string header file (#20638)Albert Y2023-04-306-0/+6
|
* [Core] Clean up ISSI drivers, Add IS31FL3736 support (#20572)Xelus222023-04-309-32/+21
| | | | Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
* [Bug] Fix compilation issues with PS/2 driver on F4x1 controllers (#20433)Drashna Jaelre2023-04-121-0/+1
|
* Added PMW3320 driver (#19543)Vladislav Marchenko2023-04-032-0/+311
|
* [Cleanup] Quantum Painter (#19825)Pablo Martínez2023-03-2512-67/+69
| | | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* Update Doxygen comments for some headers (#20194)Ryan2023-03-221-2/+2
|
* Quantum Painter QoL enhancements -- auto-poweroff, auto-flush, buffer sizing ↵Nick Brassel2023-03-207-6/+49
| | | | (#20013)
* Clean up APA102 config and add DD mapping (#20159)Ryan2023-03-201-13/+13
|
* Improve robustness of AW20216 driver (#19849)Huckies2023-03-011-0/+19
| | | * added soft reset and auto lowpower for AW20216
* Remove usages of config_common.h from config.h files. (#19714)Nick Brassel2023-01-311-0/+1
|
* Fix functions with empty params (#19647)Ryan2023-01-204-7/+7
| | | | | * Fix functions with empty params * Found a bunch more
* Add RGB565 and RGB888 color support to Quantum Painter (#19382)David Hoelscher2023-01-1410-0/+21
|
* Cleanup pmw3389.c (#19301)Alabastard-642022-12-121-2/+0
|
* Add `*_RIGHT` configuration for PMW33XX driver (#19243)Pablo Martínez2022-12-103-5/+21
|
* Add default limit to OLED dirty processing (#19068)Joel Challis2022-11-142-2/+7
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-11-131-4/+3
|\
| * fix: mousekey doesn't work with trackpoint (#18474)Klesh Wong2022-11-141-4/+3
| | | | | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* | Fix oled_render to render all dirty blocks. (#18887)Richard Nash2022-11-141-46/+44
| |
* | Revert "mcp23018: add return status to init (#18178)" (#18709)Joel Challis2022-10-292-11/+5
| | | | | | This reverts commit 3fffa51554556edc9ca53bc04ef45abe87d3d3c9.
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-10-211-9/+8
|\|
| * Keychron Q3 I2C & CKLED2001 transfer speedup (#18780)Stefan2022-10-201-9/+8
| |
* | ws2812: replace RGBLED_NUM with driver-owned constant to decouple driver ↵Thomas Kriechbaumer2022-10-211-0/+6
| | | | | | | | from RGBLEDs/RGBMATRIX defines (#18036)
* | Make QP driver init functions weak. (#18717)Nick Brassel2022-10-147-8/+8
| |
* | mcp23018: add return status to init (#18178)JohSchneider2022-10-132-5/+11
| |
* | fix typo in solenoid.h (#18635)Giuseppe Rota2022-10-071-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-10-051-7/+8
|\|
| * fix: ps2_interrupt.c failed to compile (#18597)Klesh Wong2022-10-051-7/+8
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-10-041-1/+1
|\|
| * define `oled_write_ln_P` as `oled_write_ln` for non-AVR MCUs (#18589)Less/Rikki2022-10-051-1/+1
| |
* | Format code according to conventions (#18533)QMK Bot2022-09-291-3/+3
| |
* | Start Bluetooth API (#18366)Ryan2022-09-294-44/+140
| |
* | Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan2022-09-2322-39/+44
| |
* | [QP] Add RGB565 surface. Docs clarification, cleanup, tabsification, and ↵Nick Brassel2022-09-193-3/+320
| | | | | | | | reordering. (#18396)
* | Fix cirque tap from secondary side (#18351)Dasky2022-09-141-8/+0
| |
* | RN42 driver: small cleanups (#18310)Ryan2022-09-092-15/+21
| | | | | | | | | | | | | | | | | | * RN42 driver: small cleanups * Include header * Fix mouse report per RN42 UG * Spacing for consistency
* | Move Bluetooth-related function calls up to host/keyboard level (#18274)Ryan2022-09-072-7/+3
| | | | | | | | | | | | | | | | | | | | | | * 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
* | Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-302-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | [Core] Introduce pointing device specific debug messages (#17663)Stefan Kerkmann2022-08-296-44/+19
|/
* Add led matrix support for CKLED2001 (#17643)lokher2022-08-134-14/+566
|
* Create generic Pointing Device Pin defines (#17776)Drashna Jaelre2022-08-125-8/+42
|
* Fixup compilation of printf-like functions with uint32_t args. (#17904)Nick Brassel2022-08-041-4/+4
|
* Format code according to conventions (#17869)QMK Bot2022-07-311-22/+22
|
* Add ST7735 driver to Quantum Painter (#17848)David Hoelscher2022-07-313-0/+220
|
* Fix POINTING_DEVICE_GESTURES_SCROLL_ENABLE typo (#17850)Daniel Kao2022-07-311-2/+2
| | | | | | | | * 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
* Implement relative mode for Cirque trackpad (#17760)Drzony2022-07-295-38/+115
|
* Cirque circular scroll: Support POINTING_DEVICE_COMBINED (#17654)Daniel Kao2022-07-251-12/+17
|
* Add support for PAW3204 Optical Sensor (#17669)Drashna Jaelre2022-07-192-0/+240
| | | | Co-authored-by: gompa <gompa@h-bomb.nl> Co-authored-by: Stefan Kerkmann <karlk90@pm.me>