summaryrefslogtreecommitdiffstats
path: root/keyboards/adafruit
Commit message (Collapse)AuthorAgeFilesLines
* RGB Matrix: driver naming cleanups (#21594)Ryan2023-08-231-1/+1
|
* Move `RGBLED_NUM` to data driven (#21278)Ryan2023-06-181-1/+0
|
* [Keymap] Drashna Keymap updates for 0.21.0 (#21073)Drashna Jaelre2023-05-313-0/+110
|
* OLED Driver improvements (#20331)Drashna Jaelre2023-05-103-858/+1
| | | | Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* More `info.json` whitespace cleanups (#20665)Ryan2023-05-031-13/+13
|
* Encodermap direction define. (#20454)Nick Brassel2023-04-153-3/+3
|
* Move `RGB_MATRIX_DRIVER` to data driven (#20350)Ryan2023-04-082-1/+3
|
* Merge remote-tracking branch 'upstream/master' into developNick Brassel2023-04-087-11/+53
|\
| * [Keyboard] Add audio support to Adafruit MacroPad RP2040 (#20353)Drashna Jaelre2023-04-087-11/+53
| |
* | Migrate `rgblight.pin` and `RGB_DI_PIN` to `ws2812.pin` (#20303)Ryan2023-04-062-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-04-052-0/+101
|\|
| * Add peterfalken userspace & keymaps (#19897)Luis Garcia2023-04-052-0/+101
| | | | | | | | Co-authored-by: Peter.Falken <luis.garcia@bitjester.com>
* | Add core/fallback encoder behaviour (#20320)jack2023-04-031-14/+0
| |
* | Move `WS2812_DRIVER` to data driven (#20248)Ryan2023-03-262-1/+3
|/
* Move encoder config to data driven (#19923)Ryan2023-02-262-4/+5
| | | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* Move layouts for direct_pins boards to data driven (#19872)Ryan2023-02-193-52/+14
|
* Move Bootmagic config to data driven (#19860)Ryan2023-02-172-5/+3
|
* Migrate `DIRECT_PINS` to data driven (#19826)Ryan2023-02-142-16/+9
|
* Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)Ryan2023-02-082-4/+2
|
* Debounce defines cleanup (#19742)Ryan2023-02-031-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Clean up `DEBOUNCE` in config.h, 0-9 * Clean up `DEBOUNCE` in config.h, A * Clean up `DEBOUNCE` in config.h, B * Clean up `DEBOUNCE` in config.h, C * Clean up `DEBOUNCE` in config.h, D * Clean up `DEBOUNCE` in config.h, E * Clean up `DEBOUNCE` in config.h, F * Clean up `DEBOUNCE` in config.h, G * Clean up `DEBOUNCE` in config.h, H * Clean up `DEBOUNCE` in config.h, handwired * Clean up `DEBOUNCE` in config.h, I * Clean up `DEBOUNCE` in config.h, J * Clean up `DEBOUNCE` in config.h, K * Clean up `DEBOUNCE` in config.h, L * Clean up `DEBOUNCE` in config.h, M * Clean up `DEBOUNCE` in config.h, N * Clean up `DEBOUNCE` in config.h, O * Clean up `DEBOUNCE` in config.h, P * Clean up `DEBOUNCE` in config.h, Q * Clean up `DEBOUNCE` in config.h, R * Clean up `DEBOUNCE` in config.h, S * Clean up `DEBOUNCE` in config.h, T * Clean up `DEBOUNCE` in config.h, U * Clean up `DEBOUNCE` in config.h, V * Clean up `DEBOUNCE` in config.h, W * Clean up `DEBOUNCE` in config.h, X * Clean up `DEBOUNCE` in config.h, Y * Clean up `DEBOUNCE` in config.h, Z * Remove default debounce from info.json * Migrate non-default debounce to info.json
* Remove usages of config_common.h from config.h files. (#19714)Nick Brassel2023-01-311-1/+0
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-10-052-2/+2
|\
| * [Keyboard] adafruit/macropad: Fix typo (#18616)Leon Anavi2022-10-052-2/+2
| |
* | Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan2022-09-231-1/+1
| |
* | Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-301-2/+0
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Move keyboard USB IDs and strings to data driven: develop (#18152)Ryan2022-08-242-7/+7
| | | | | * Move keyboard USB IDs and strings to data driven: develop * Also do new onekeys
* (develop) Update bootmagic for Adafruit Macropad (#17755)jpe2302022-07-222-4/+5
|
* Adafruit Macropad: Add VIA keymap, fix default km (#17735)jpe2302022-07-214-1/+142
|
* Add Adafruit Macropad (#17512)jpe2302022-07-0811-0/+1338