summaryrefslogtreecommitdiffstats
path: root/keyboards
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-139-0/+682
|\
| * [Keyboard] Add Kallos keyboard (#17461)Cipulot2022-07-129-0/+682
| | | | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-139-0/+466
|\|
| * [Keyboard] Kprepublic bm80v2 iso revised (#17571)Yizhen Liu2022-07-129-0/+466
| | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-138-16/+16
|\|
| * [Keyboard] Update layout for MechBrewery series (#17570)AnthonyNguyen1682022-07-128-16/+16
| |
* | GMMK 2 WBG7 MCU compatibility (#16436)GloriousThrall2022-07-1227-0/+1612
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * GMMK V2 QMK Compatibility * fix problems * Update keyboards/gmmk/gmmk2/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Fix a minor problem * Optimize the code * Update config.h * Update * Update config.h * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/via/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update keyboards/gmmk/gmmk2/p96/iso/keymaps/via/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update keyboards/gmmk/gmmk2/p65/ansi/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/via/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/iso/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p65/iso/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update config.h * Update config.h * Modify device pid * Add gmmk2_p96 keyboard. * Add gmmk2_p96 keyboard. * Update led matrix. * Update led matrix. * Delete eeprom_flash.c * Update keyboards/gmmk/gmmk2/p96/ansi/rules.mk Co-authored-by: Nick Brassel <nick@tzarc.org> * Update from qmk develop branch * Increased compatibility with wear_leveling. * Update config.h Co-authored-by: Joy <chang.li@westberrytech.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-111-6/+4
|\|
| * Fix layout macro for nightly_boards/paraluman (#17633)Joel Challis2022-07-111-6/+4
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-1114-615/+694
|\|
| * [Keyboard] Add Quefrency Rev. 5 (#17503)Danny2022-07-1114-615/+694
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-119-0/+306
|\|
| * [Keyboard] Add Swordfish keyboard (#17567)Felix Jen2022-07-119-0/+306
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-1113-10/+353
|\|
| * [Keyboard] add kinesis/kintlc (#17301)Alex Băluț2022-07-1113-10/+353
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-1112-0/+279
|\|
| * [Keyboard] TR90PM (#17060)balloondogcaps2022-07-116-0/+140
| | | | | | | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
| * [Keyboard] Add TR90 (#16838)balloondogcaps2022-07-116-0/+139
| | | | | | Co-authored-by: Ryan <fauxpark@gmail.com>
* | [Core] Use polled waiting on ChibiOS platforms that support it (#17607)Stefan Kerkmann2022-07-119-26/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use polled waiting on platforms that support it Due to context switching overhead waiting a very short amount of time on a sleeping thread is often not accurate and in fact not usable for timing critical usage i.e. in a driver. Thus we use polled waiting for ranges in the us range on platforms that support it instead. The fallback is the thread sleeping mechanism. This includes: * ARM platforms with CYCCNT register (ARMv7, ARMv8) this is incremented at CPU clock frequency * GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at CPU clock frequency * RP2040 ARMv6 port which uses the integrated timer peripheral which is incremented with a fixed 1MHz frequency * Use wait_us() instead of chSysPolledDelayX ...as it is powered by busy waiting now. * Add chibios waiting methods test bench
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-117-0/+194
|\|
| * [Keyboard] Fin pad (#17523)Evelien Dekkers2022-07-117-0/+194
| | | | | | Co-authored-by: Joel Challis <git@zvecr.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-113-0/+78
|\|
| * [Keyboard] kbdfans kbd67 rev 2 : add new LAYOUT_65_iso_split_bs (#16922)Naphtaline2022-07-113-0/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [Layout/Keymap] kbdfans kbd67 rev2 : add new LAYOUT_65_iso_split_bs and naphaline keymap as a working example * Update keyboards/kbdfans/kbd67/rev2/keymaps/naphtaline/keymap.c I do trust the reviewer, here goes the change :) Co-authored-by: Ryan <fauxpark@gmail.com> * Remove QMK custom keycodes 1/2 Co-authored-by: Nick Brassel <nick@tzarc.org> * Remove QMK custom keycodes 2/2 Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-1116-164/+285
|\|
| * Peej Rosaline Refactor (#17564)James Young2022-07-1116-164/+285
| |
* | [Keyboard] Add Fine!40 PCB Support (#17426)Aidan Smith2022-07-119-0/+446
| | | | | | | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-112-2/+2
|\|
| * splitkb/kyria - Resolve CONVERT_TO_PROTON_C warnings (#17617)Joel Challis2022-07-112-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-1138-0/+2036
|\|
| * [Keyboard] Add Promise87 (#17525)GG2022-07-1138-0/+2036
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-101-1/+1
|\|
| * Fix infinite recursion in checkerboards/quark_plus (#17616)Joel Challis2022-07-101-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-091-3/+4
|\|
| * merge/um80 - Fix WPM issues in configurator builds (#17608)Joel Challis2022-07-091-3/+4
| |
* | Add Adafruit Macropad (#17512)jpe2302022-07-0811-0/+1338
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-0717-50/+14
|\|
| * [Keyboard] Clean up dactyl manuform unused files (#15890)Bartosz Nowak2022-07-0717-50/+14
| |
* | [Fix] Patches after printf library update (#17584)Stefan Kerkmann2022-07-075-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | * Add missing '(' to print_bin_reverse32 declaration * Fix insufficient character buffers on satisfaction75 * Remove \0 character in format string and use corrected offset math instead on rocketboard 16 * Replace snprintf_ with snprintf for djinn * Explicitly ignore format checks for tracktyl manuform that uses %b specifier * Print properly escaped version string in command.c, as PRODUCT or other defines can contain constructs like 'Vendor keyboard 66%' which will be interpreted as a format specifier
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-076-0/+16
|\|
| * Fix/waka60 audio (#17561)Zykrah2022-07-066-0/+16
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-034-141/+148
|\|
| * KP Republic BM60HSRGB_EC QMK Configurator and readme touch-up (#17541)James Young2022-07-034-141/+148
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-0310-0/+366
|\|
| * Add support for MacroCat Keyboard (#17480)李董睿煊2022-07-0310-0/+366
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-031-39/+40
|\|
| * Remove dead space from Pierce QMK Configurator layout data (#17551)James Young2022-07-031-39/+40
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-032-2/+2
|\|
| * Fixup bounce/75 (#17548)jack2022-07-032-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-037-64/+112
|\|
| * [Keymap] Updates to drashna Keymaps and Userspace (#17543)Drashna Jaelre2022-07-027-64/+112
| |