summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/promethium
Commit message (Collapse)AuthorAgeFilesLines
* Unicodemap keycodes rename (#21092)Ryan2023-06-012-26/+26
|
* Remove more junk files and scripts (#20682)Ryan2023-05-032-8/+0
|
* Move single `LAYOUT`s to data driven (#20365)Ryan2023-04-124-85/+57
|
* Migrate `rgblight.pin` and `RGB_DI_PIN` to `ws2812.pin` (#20303)Ryan2023-04-062-1/+3
|
* WS2812 driver improvements (#20262)Ryan2023-03-301-1/+1
|
* Fix some more missing `#pragma once`s (#20241)Ryan2023-03-232-0/+4
|
* Remove trailing zeroes in info.json layouts (#20156)Ryan2023-03-171-16/+16
|
* Remove matrix_init_quantum/matrix_scan_quantum (#19806)Joel Challis2023-02-111-2/+2
|
* Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)Ryan2023-02-082-6/+2
|
* Remove unused `LOCKING_SUPPORT_ENABLE` from config.h (#19748)Ryan2023-02-051-5/+0
|
* Debounce defines cleanup (#19742)Ryan2023-02-031-3/+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 unused `MATRIX_HAS_GHOST` from config.h (#19726)Ryan2023-02-031-3/+0
|
* Clean up Force NKRO in config.h (#19718)Ryan2023-01-301-33/+0
|
* Remove usages of config_common.h from config.h files. (#19714)Nick Brassel2023-01-311-1/+0
|
* Remove commented out backlight config & stray "backlight levels" (#19703)Ryan2023-01-281-6/+0
|
* Fix functions with empty params (#19647)Ryan2023-01-202-6/+6
| | | | | * Fix functions with empty params * Found a bunch more
* Align definition of unicode_map (#19452)Joel Challis2023-01-012-2/+2
|
* Refactor some led_set_kb instances (#19179)Joel Challis2022-12-091-2/+0
| | | | | | | | | * Refactor some led_set_kb instances * Apply suggestions from code review Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Normalise output selection (Bluetooth) keycodes (#19004)Ryan2022-11-082-10/+4
|
* Normalise Unicode keycodes (#18898)Ryan2022-10-312-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `UC_MOD`/`UC_RMOD` -> `UC_NEXT`/`UC_PREV` * `UNICODE_MODE_*` -> `QK_UNICODE_MODE_*` * `UC_MAC` -> `UNICODE_MODE_MACOS` * `UC_LNX` -> `UNICODE_MODE_LINUX` * `UC_WIN` -> `UNICODE_MODE_WINDOWS` * `UC_BSD` -> `UNICODE_MODE_BSD` * `UC_WINC` -> `UNICODE_MODE_WINCOMPOSE` * `UC_EMACS` -> `UNICODE_MODE_EMACS` * `UC__COUNT` -> `UNICODE_MODE_COUNT` * `UC_M_MA` -> `UC_MAC` * `UC_M_LN` -> `UC_LINX` * `UC_M_WI` -> `UC_WIN` * `UC_M_BS` -> `UC_BSD` * `UC_M_WC` -> `UC_WINC` * `UC_M_EM` -> `UC_EMAC` * Docs * Update quantum/unicode/unicode.h
* Fix build failures uncovered by #18753 (#18789)Ryan2022-10-211-5/+0
|
* Remove legacy Debug keycode (#18769)Ryan2022-10-192-2/+2
| | | | | | | | | | | * `DEBUG` -> `DB_TOGG`, default-ish keymaps * `DEBUG` -> `DB_TOGG`, user keymaps * `DEBUG` -> `DB_TOGG`, community layouts * `DEBUG` -> `DB_TOGG`, userspace * `DEBUG` -> `DB_TOGG`, docs & core
* Remove legacy keycodes, part 6 (#18740)Ryan2022-10-161-1/+1
| | | | | | | | | * `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL`
* Remove legacy keycodes, part 5 (#18710)Ryan2022-10-152-2/+2
| | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM`
* Remove `UNICODE_KEY_OSX` and `UC_OSX` (#18290)Ryan2022-09-062-4/+4
|
* [Core] Rework PS/2 driver selection (#17892)Marek Kraus2022-08-314-6/+9
| | | | | | | | | | | | | | | | | | | | | | | * [Core] Rework PS/2 driver selection Enabling and selecting PS/2 driver was using old approach, so it was reworked to current approach, inspired by Serial and WS2812 driver selections. * [Keyboard] Update keyboards using PS/2 to use new PS/2 driver selection * [Docs] Update PS/2 documentation to use new PS/2 driver selection * Fix indentation * [Core] Add PS2 to data driver * Fix oversight in property name Co-authored-by: Drashna Jaelre <drashna@live.com> * Add PS/2 pins to data driven mappings Co-authored-by: Drashna Jaelre <drashna@live.com>
* Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-302-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* RESET -> QK_BOOT user keymaps (#17940)Joel Challis2022-08-211-1/+1
|
* Remove `UNUSED_PINS` (#17931)Nick Brassel2022-08-061-1/+0
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-302-11/+7
|\
| * Move keyboard USB IDs and strings to data driven: handwired (#17822)Ryan2022-07-302-11/+7
| |
* | Remove full bootmagic config (#17702)Joel Challis2022-07-191-6/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-171-6/+0
|\|
| * Remove full bootmagic config (#17701)Joel Challis2022-07-171-6/+0
| |
* | Make default layer size 16-bit (#15286)Drashna Jaelre2022-06-192-7/+7
|/ | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-151-1/+1
|
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-151-2/+0
| | | | (#16655)
* Remove `matrix_key_count()` (#16603)Ryan2022-03-101-13/+0
| | | | | * Remove `matrix_key_count()` * Remove `matrix_bitpop()`
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-02-111-1/+1
|\
| * handwired/promethium: fix missing include (#16317)Ryan2022-02-111-1/+1
| |
* | Rename `AdafruitBLE` to `BluefruitLE` (#16127)Ryan2022-01-304-9/+9
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-12-092-2/+2
|\|
| * Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-092-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developDrashna Jael're2021-12-083-30/+1
|\|
| * Remove references to Makefile in keyboard-level rules.mk (#15427)Ryan2021-12-073-30/+1
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-12-022-6/+0
|\|
| * Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-012-6/+0
| |
* | [Core] Remove matrix_is_modified() and debounce_is_active() (#15349)Stefan Kerkmann2021-11-291-8/+0
|/
* Align PS/2 GPIO defines (#14745)Joel Challis2021-10-201-24/+6
| | | | | | | | | | | | | * Align PS/2 GPIO * Align PS/2 GPIO * refactor more keyboards * Remove more defines * Put back avr/chibios split * format
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-301-3/+3
|\