summaryrefslogtreecommitdiffstats
path: root/keyboards/orthodox/rev3_teensy
Commit message (Collapse)AuthorAgeFilesLines
* Move single `LAYOUT`s to data driven (#20365)Ryan2023-04-123-46/+55
|
* Remove useless "ifdef KEYBOARD_*" (#20078)Ryan2023-03-162-3/+1
| | | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* Move matrix config to info.json, part 2 (#19987)Ryan2023-03-102-10/+5
|
* Move `SOFT_SERIAL_PIN` to data driven (#19863)Ryan2023-02-172-2/+3
|
* Remove matrix size defines (#19581)Ryan2023-02-171-5/+0
|
* Remove unused RGBLight defines from config.h (#19859)Ryan2023-02-171-5/+0
|
* Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)Ryan2023-02-082-3/+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
|
* 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-3/+0
|
* 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`
* Move keyboard USB IDs and strings to data driven: O (#17874)Ryan2022-08-022-7/+6
|
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-151-2/+0
| | | | (#16655)
* Remove width, height and key_count from info.json (#14274)Ryan2021-09-121-2/+0
|
* Remove bootloader listings from rules.mk (#14330)Ryan2021-09-101-7/+0
|
* Remove empty override functions (#14312)Ryan2021-09-051-13/+0
| | | | | | | | | | | | | | | | | * Remove empty override functions, 0-9 * Remove empty override functions, A-D * Remove empty override functions, E-H * Remove empty override functions, handwired * Remove empty override functions, I-L * Remove empty override functions, M-P * Remove empty override functions, Q-T * Remove empty override functions, U-Z
* first pass: matrix consistency improvements (#13471)Zach White2021-07-111-1/+1
|
* Make Swap Hands use PROGMEM (#12284)Drashna Jaelre2021-05-091-1/+1
| | | | | | This converts the array that the Swap Hands feature uses to use PROGMEM, and to read from that array, as such. Since this array never changes at runtime, there is no reason to keep it in memory. Especially for AVR boards, as memory is a precious resource.
* Remove `DESCRIPTION`, N-Q (#11631)Ryan2021-01-201-1/+0
|
* Cleanup rules.mk for 32U4 keyboards, N-Q (#7147)fauxpark2019-10-251-1/+10
|
* Remove old promicro_bootloader_jmp() declarations (#6444)fauxpark2019-08-211-3/+0
|
* Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE (#5997)Drashna Jaelre2019-06-061-1/+1
|
* Fix Orthodox keyboard dimensions in info.json (all revisions)noroadsleft2019-04-131-2/+2
|
* Additional cleanup of orthodox files and keymapsDrashna Jaelre2019-04-051-5/+1
|
* Convert Orthodox to Split Common codeDrashna Jaelre2019-04-051-4/+3
|
* Fix Command feature: use get_mods() instead of keyboard_report->mods (#4955)Konstantin Đorđević2019-01-271-1/+1
| | | | | | | | | | | | | | * Remove unnecessary IS_COMMAND definition in clueboard/66/rev4 * Replace keyboard_report->mods with get_mods() in IS_COMMAND definitions * Update docs to use get_mods() instead of keyboard_report->mods * Replace keyboard_report->mods with get_mods() in tmk_core/protocol/usb_hid/test For some reason, this occurrence used KB_LSHIFT and KB_RSHIFT, which don't exist * Replace keyboard_report->mods with get_mods() in Massdrop keyboards (as per @patrickmt)
* Remove all of the deprecated RGB definesDrashna Jaelre2018-10-221-3/+1
| | | | Fixes #3641
* Fix Orthodox heightDrashna Jaelre2018-05-201-5/+5
|
* Fix Orthodox Info.json filesDrashna Jaelre2018-05-151-8/+17
|
* Orthodox info.json changesDrashna Jaelre2018-05-142-7/+7
|
* Add support for Swap Hands feature to Orthodox and Iris (#2933)Drashna Jaelre2018-05-141-0/+15
| | | | | | | | | | * Add support for Swap Hands feature to Orthodox and Iris * Fix hag's iris keymap to use LAYOUT properly * Fix Swedish's Iris Keymap * Fix Drashna's Orthodox keymaps, because he's an idiot
* Remove bootloader from info.jsonsskullY2018-04-111-1/+0
|
* Pull information from config.h and rules.mk (#2711)skullydazed2018-04-071-3/+0
| | | | | | * Pull information from config.h and rules.mk * Readd the kbd75 maintainer
* Update info.json for orthodox (#2576)Drashna Jaelre2018-03-211-1/+1
|
* Create info.json for Ergodox EZ (#2572)Drashna Jaelre2018-03-201-0/+15
| | | | | | * Create info.json for Ergodox EZ * Add Orthodox info.json too
* Add teensy revision folder for Orthodox Rev3 (#2510)Drashna Jaelre2018-03-164-0/+177
* Add Rev3 Teensy for Orthodox * MOve bootloader defines into revision folders * Finishing touches