summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-01-18Fixed the build break of helix/rev1:OLED_sample caused by PR #4462. (#4874)Takeshi ISHII1-0/+20
2019-01-18Add cursor keys to top layer (#4876)Kenny Hung1-4/+4
2019-01-18[Keyboard] Fix bootloader size for v60_type_r (#4873)WillyPillow1-7/+8
2019-01-18Flip definitions of macOS brightness aliasJunya Ogura1-2/+2
Before: KC_BRMU - Brightness Down KC_BRMD - Brightness Up After: KC_BRMU - Brightness Up KC_BRMD - Brightness Down
2019-01-18Grammatical fixes for GPIO Control doc (#4869)noroadsleft1-3/+3
* Grammatical fixes for GPIO Control doc I found the Advanced Settings section to be poorly written. * Commit suggestions from fauxpark * Change first instance of "microcontroller" to match suggestion
2019-01-18handwired/ortho5x13: layout macro refactornoroadsleft1-5/+2
Discovered the LAYOUT_compact macro didn't compile in QMK Configurator. Realized the reason for that was that it automatically prepends `KC_` to every keycode received. Renamed the macro to LAYOUT_kc so Configurator will ignore it. Also changed the file to use the #pragma once include guard because I was in here anyway.
2019-01-18Add new brightness aliases to keycodes_basic.mdfauxpark2-253/+249
2019-01-18[Keyboard] update VENDOR_ID, PRODUCT_ID, and DEVICE_VER for Duck boards (#4612)MechMerlin5-14/+14
* change VENDOR_ID, PRODUCT_ID, and DEVICE_VER as step one in getting VIA support * fix v1 product id * VIA doesn't use the version, so we need to encode it into PRODUCT_ID
2019-01-18Add Planck rev1 and rev2, clean up rev3-5 config.hJordi Pakey-Rodriguez7-18/+11
2019-01-18Allows Terminal to use ModTap/LayerTap keys (#4586)Mislav Čakarić1-0/+6
* fixes #4583 * #4583 - terminal also handles layer tap now
2019-01-18Defined IS_(HOST_)LED_ON/OFF() and improved LED documentation (#4853)DidierLoiseau2-8/+52
* Defined IS_(HOST_)LED_ON/OFF() and improved LED documentation * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com> * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com> * Integrated @drashna and @fauxpark's PR comments - changed all plurals of "LED" to "LEDs" in the file - rewording of the note about host_keyboard_leds() vs. led_set_user() * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com>
2019-01-18MacOS Brightness Alias (#4836)Jeremy Bernhardt2-4/+8
* Added aliases for OSX brightness * Updated docs for alises * Moved aliases, added docs to Brightness section * Update docs/keycodes.md Co-Authored-By: germ <jeremythegeek@gmail.com> * Update docs/keycodes.md Co-Authored-By: germ <jeremythegeek@gmail.com> * Update keycode.h * Update keycode.h * Update keycodes.md * Update docs/keycodes.md Co-Authored-By: germ <jeremythegeek@gmail.com>
2019-01-18[Keymap] added custom led effect keymap.c (#4856)Valen Cheung1-0/+939
2019-01-17Simplify split_common Code significantly (#4772)James Churchill24-1321/+711
* Eliminate separate slave loop Both master and slave run the standard keyboard_task main loop now. * Refactor i2c/serial specific code Simplify some of the preprocessor mess by using common function names. * Fix missing #endif * Move direct pin mapping support from miniaxe to split_common For boards with more pins than sense--sorry, switches. * Reordering and reformatting only * Don't run matrix_scan_quantum on slave side * Clean up the offset/slaveOffset calculations * Cut undebounced matrix size in half * Refactor debouncing * Minor fixups * Split split_common transport and debounce code into their own files Can now be replaced with custom versions per keyboard using CUSTOM_TRANSPORT = yes and CUSTOM_DEBOUNCE = yes * Refactor debounce for non-split keyboards too * Update handwired/xealous to build using new split_common * Fix debounce breaking basic test * Dodgy method to allow a split kb to only include one of i2c/serial SPLIT_TRANSPORT = serial or SPLIT_TRANSPORT = i2c will include only that driver code in the binary. SPLIT_TRANSPORT = custom (or anything else) will include neither, the keyboard must supply it's own code if SPLIT_TRANSPORT is not defined then the original behaviour (include both avr i2c and serial code) is maintained. This could be better but it would require explicitly updating all the existing split keyboards. * Enable LTO to get lets_split/sockets under the line * Add docs for SPLIT_TRANSPORT, CUSTOM_MATRIX, CUSTOM_DEBOUNCE * Remove avr-specific sei() from split matrix_setup Not needed now that slave doesn't have a separate main loop. Both sides (on avr) call sei() in lufa's main() after exiting keyboard_setup(). * Fix QUANTUM_LIB_SRC references and simplify SPLIT_TRANSPORT. * Add comments and fix formatting.
2019-01-17Add documentation and fix formating (#4860)Drashna Jaelre1-156/+145
2019-01-17[Keymap] Adding bdk keymap for ergobox_ez (#4850)bendk4-0/+220
* Adding bdk keymap * Updating keymap after review from drashna
2019-01-1640percent.club Luddite: Configurator update (#4859)noroadsleft1-9/+71
- corrected value for keyboard_name - reformatted file
2019-01-16Add some function comments in action_layer.c (#4858)Nikolaus Wittenstein1-6/+6
2019-01-16Crawlpad refactor (#4854)noroadsleft7-46/+68
* Crawlpad: delete kbfirmware JSON file * Crawlpad: refactor - config.h and crawlpad.h updated to use #pragma once method - layout macro renamed from KEYMAP to LAYOUT_ortho_4x4 - default keymap now uses #include QMK_KEYBOARD_H - deleted deprecated action_get_macro function - cleanup rules.mk file - add LAYOUTS = ortho_4x4 to rules.mk * Crawlpad: Configurator support * Crawlpad: readme update - update image link to direct link - fully update Docs link line - delete reference to deleted kbfirmware JSON file
2019-01-15[Keyboard] Add cKeys Handwire 101 Keyboard (#4848)Branden Byers10-5/+679
* Update general README * Add handwire_101 * Update keyboards/ckeys/handwire_101/keymaps/default/keymap.c Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Use Pragma once Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/config.h Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/config.h Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/handwire_101.h Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/handwire_101.h Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/keymaps/default/keymap.c Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/keymaps/default/keymap.c Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/keymaps/default/keymap.c Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Update keyboards/ckeys/handwire_101/keymaps/default/keymap.c Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Change KEYMAP to LAYOUT and remove endif * Apply suggestions from code review Co-Authored-By: brandenbyers <branden@brandenbyers.com> * Move layers to enum and remove KC_TRNS
2019-01-15[Keyboard] Iris via support, Rev 3 updates (#4849)Danny13-217/+116
* Add encoder support * Add VIA support to Iris Rev. 3 * Update pinout and disable mouse keys to free up space * Rollout VIA support to all Iris revisions * Update default keymap * Update vendor ID
2019-01-15[Keyboard] Add bthlabs/geekpad (#4840)Tomek Wójcik8-0/+471
* Hello, GeekPad! * Fixed formatting in `README.md`.
2019-01-15[Keymap] Added resfury keymap (#4827)Aaron Wood4-0/+220
Colemak base with Qwerty/Dvorak support
2019-01-14Pointed LM Docs at expected keycodes (#4835)Jeremy Bernhardt1-1/+1
* Pointed LM Docs at expected keycodes * Update docs/feature_advanced_keycodes.md Co-Authored-By: germ <jeremythegeek@gmail.com>
2019-01-14Add personal userspace, update keymaps (#4845)Konstantin Đorđević13-169/+400
* Add kbd6x:konstantin keymap * Prevent tap dance from sending LShift as a weak mod in KBD6X * Move config.h and rules.mk definitions into userspace * Add UC_WIN to UNICODE_SELECTED_MODES * Temporarily use Bootmagic until Command is fixed * Move common behavior from keyboards into userspace * Update kbd6x:konstantin keymap and userspace * Make a RCTRL layer in kbd6x:konstantin * Make KC_ESC turn off layers * KC_ESC turns L_FN off only if it was locked on * Add missing record->event.pressed checks * Move numpad toggling logic into function * Disable Bootmagic, enable KEYBOARD_SHARED_EP with Command
2019-01-14[Keyboard] Add support for THE50 (#4844)Erovia8-0/+316
* Add support for THE50 A 50% custom keyboard designed and produced by LazyDesigners * THE50 code-improvement Implement the changes suggested by noroadsleft.
2019-01-13Change handling of CUSTOM_MATRIX in common_features.mk slightly.mtei1-8/+9
2019-01-13Modified URLs to point to new locationsJeremy Bernhardt164-165/+165
2019-01-13[Keymap] Nyquist layout adapted from eorgodox_ez:skug (#4830)Christoffer Holmberg3-0/+214
* Nyquist layout adapted from my eorgodox layout * Some layout tuning & cleanup * Removed deprecated defines * Added pgup + pgdown
2019-01-13[Keymap] Adds keymaps for muzfuz DZ60, Planck, Clueboard66 (#4825)Mazin Power8-0/+516
* Adds keymaps for muzfuz * Remove unused keys from adjust layer * Bring in line with current QMK standards.
2019-01-13Changed rest note (#4837)Jeremy Bernhardt1-0/+4
* Changed rest term * Update quantum/audio/musical_notes.h Co-Authored-By: germ <jeremythegeek@gmail.com>
2019-01-13[Keymap] Add tw1t611 german keyboard layout for minidox. (#4679)tw1t6113-0/+83
Apply core functions. Change layout.
2019-01-13[Keyboard] hexon38 and Dual-role key implementation (#4709)Jason Pepas6-0/+562
* initial dual-role key implementation for hexon38 * PR feedback, adding README * Moving to handwired subdir * Additional PR feedback
2019-01-13[Keymap] my keymap for the crkbd and update my iris keymap readme (#4788)VM5-1/+337
* adding my keymap primarily to iris * adding my crkbd keymap and update my iris keymap readme with an extra pic * incorporting @drashna's suggestions
2019-01-12[Keymap] Update to personal keymaps and userspace (#4831)SpacebarRacecar6-51/+55
* changed ortho keymaps and userspace * changed prime_o keymap * changed userspace * optimized keymaps and userspace * removed permissive hold as it doesn't seem to do anything * defined TAPPING_TERM in userspace config.h
2019-01-12[Keyboard] Fix layout macro name for Gergo info.json (#4828)noroadsleft1-1/+1
Layout macro name in info.json was named LAYOUT instead of LAYOUT_GERGO as it is in gergo.h.
2019-01-12Remove empty action_function()fauxpark7-94/+0
2019-01-12Remove empty fn_actions[]fauxpark175-712/+2
2019-01-12[Keyboard] Adding support for Gergo (#4792)Jeremy Bernhardt11-0/+1412
* Commited into clean repo * Gergo initial release * Cleaning up * Cleaning up * Update readme.md * Updated image, fixed MD formatting, added clairity * Moved keymap to keyboard subdir, modified rules.mk * Cleaned header guards * Cleaned header guards. Read the rest of the PR comments * Update keyboards/gergo/keymaps/default/keymap.c Co-Authored-By: germ <jeremythegeek@gmail.com> * Update keyboards/gergo/readme.md Co-Authored-By: germ <jeremythegeek@gmail.com> * Moved makefiles to keymap mod-area-thingy-with-overrides * Update rules.mk Slow the roll on the defaults while I wait for merge * Update rules.mk * Cleaning cleaning cleaning * More housekeeping. Keeping optdefs * moved keyboard specfic conf to config.h. Can we merge yet? * added info.json
2019-01-12[Keymap] Adds layout for Ergodox, colemak_code_friendly (#4819)Leszek1113-0/+448
* Adds layout for Ergodox, colemak_code_friendly * code cleanup * code cleanup * code cleanup
2019-01-12[Keymap] added new planck keymap /sebas (#4821)Spaceman5-0/+158
* Create readme.md * Add files via upload * Add files via upload * Update readme.md * Add files via upload * Update keymap.c * Delete temp.c * updated per request removed 41-69 and changed keymap to layout * Update keymap.c * Added Guide * Update keymap.c * Update readme.md * Create readme.md * Add files via upload * Update keymap.c * Update keymap.c * Update keymap.c * Update keymap.c * Update keymap.c
2019-01-12[Keymap] Sweet16 as a switch tester (#4822)gorbachev5-0/+336
* Sweet16 as a switch tester * pragma once * QMK_KEYBOARD_H instead of sweet16.h
2019-01-12Improved fix for __always_inline redefinition bugJames Churchill1-1/+3
Instead of changing based on the version of GCC, check for the presence of the macro instead.
2019-01-12Fix Caps Lock LEDs once and for all (#4824)fauxpark1-9/+12
* Check the size of the SET_REPORT packet If we have two bytes, that probably means the first is a report ID. The 6KRO interface may or may not have one, but the NKRO interface always does, so we need to check this regardless of whether KEYBOARD_SHARED_EP is defined. * Fix indentation
2019-01-12[Keyboard] Turn on KBD67 Lighting by default (#4826)MechMerlin2-5/+3
* remove broken link * enable lighting for QMK Configurator folk
2019-01-10[Keymap] Alps64 Keymap + Readme Updates (#4807)MechMerlin3-4/+41
* update readme to adhere to modern QMK standards * add in my keymap as I keep losing the darn hex file * no need for KC_FNX * update readme
2019-01-10Documentation clarification (#3611)orbitingorca1-2/+2
* Documentation fix * Further clarification
2019-01-10docs: Add Manjaro/Arch dependencies on getting started page (#2701)Guilherme Lima1-0/+6
* Update getting_started_build_tools.md * Update getting_started_build_tools.md
2019-01-10Adds support for JacoBurge's TouchPad (#4186)Jack Humbert8-1/+480
* add touchpad * progress * working with leds and vibrations * adds readme * Update keyboards/touchpad/readme.md Co-Authored-By: jackhumbert <jack.humb@gmail.com> * updates
2019-01-10Adds Proton C Conversion (#4661)Jack Humbert28-2732/+241
* adds proton c base * fixes custom matrix include * adds readme.md * initial proton coversion, no pin mapping * start of mcu selection * add pin mapping and sweet16 test * add at90 to list * disable backlight, fix d7 * update flag names * doc updates * proton c update for mcu selection