summaryrefslogtreecommitdiff
path: root/quantum
Commit message (Collapse)AuthorAge
* add support for pedal cc messagesGabriel Young2017-02-19
|
* remove disabled codeGabriel Young2017-02-19
|
* Alternative version with a tone arrayGabriel Young2017-02-19
| | | | | | | | | | | | tone array: text data bss dec hex filename 0 25698 0 25698 6462 satan_newsboytko.hex 0x6480 bytes written into 0x7000 bytes memory (89.73%). note on array: text data bss dec hex filename 0 25802 0 25802 64ca satan_newsboytko.hex 0x6500 bytes written into 0x7000 bytes memory (90.18%).
* clean up commented codeGabriel Young2017-02-19
|
* initial implementation of polyphony using variable length array of notes onGabriel Young2017-02-19
|
* Expand MIDI key codesGabriel Young2017-02-19
|
* remove more warningsJack Humbert2017-02-16
|
* fix travis and reduce warningsJack Humbert2017-02-16
|
* fix weirdness with arm and modsJack Humbert2017-02-15
|
* unique variable nameJack Humbert2017-02-15
|
* publicise variablesJack Humbert2017-02-15
|
* add unicode common file, get names rightJack Humbert2017-02-15
|
* add unicode common file, get names rightJack Humbert2017-02-15
|
* split up unicode systems into different filesJack Humbert2017-02-15
|
* give error if both unicode/map are enabledJack Humbert2017-02-15
|
* adds layer tap toggleJack Humbert2017-02-15
|
* Add keycodes to turn on, turn off and toggle faux clickyPriyadi Iman Nurcahyo2017-02-13
|
* Implement faux-clicky featurePriyadi Iman Nurcahyo2017-02-13
|
* Merge pull request #1082 from priyadi/right-side-dual-functionJack Humbert2017-02-11
|\ | | | | Implement tap mod dual role for right side mods.
| * Make room for 'loose keycodes' by halving UNICODE_MAP rangePriyadi Iman Nurcahyo2017-02-11
| |
| * Implement tap mod dual role for right side mods.Priyadi Iman Nurcahyo2017-02-10
| |
* | added functionality for just a portJack Humbert2017-02-07
|/
* Merge pull request #1071 from dungdung/rgb_tweaksJack Humbert2017-02-07
|\ | | | | RGB tweaks
| * Added non-animated gradient modedungdung2017-02-06
| |
| * Added mode reverse step functiondungdung2017-02-06
| |
| * Christmas mode now works with even RGBED_NUMdungdung2017-02-06
| | | | | | | | | | | | Added Christmas mode steps to reduce red and green colors blending into each other Added Christmas mode interval Increased green hue to 120
* | Merge pull request #1068 from adzenith/masterJack Humbert2017-02-07
|\ \ | | | | | | Minor cleanup
| * | Add new DIODE_DIRECTION optionNikolaus Wittenstein2017-02-05
| | | | | | | | | | | | | | | | | | | | | | | | The previous two options were COL2ROW, ROW2COL; this adds CUSTOM_MATRIX to disable the built-in matrix scanning code. Most notably, this obviates the need to set MATRIX_ROW_PINS or MATRIX_COL_PINS.
| * | Remove unused matrix_raw variable in matrix.cNikolaus Wittenstein2017-02-05
| | |
| * | Fix compile warnings in light_ws2812.cNikolaus Wittenstein2017-02-03
| | | | | | | | | | | | | | | Fixes the warning "function declaration isn't a prototype" by explicitly making the parameter list void.
* | | Merge pull request #1046 from LukeSilva/masterJack Humbert2017-02-07
|\ \ \ | | | | | | | | Add Tapping Macros to QMK
| * | | Add support for various tapping macrosLuke Silva2017-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A macro key can now be easily set to act as a modifier on hold, and press a shifted key when tapped. Or to switch layers when held, and again press a shifted key when tapped. Various other helper defines have been created which send macros when the key is pressed, released and tapped, cleaning up the action_get_macro function inside keymap definitions. The layer switching macros require a GCC extension - 'compound statements enclosed within parentheses'. The use of this extension is already present within the macro subsystem of this project, so its use in this commit should not cause any additional issues. MACRO_NONE had to be cast to a (macro_t*) to suppress compiler warnings within some tapping macros.
| * | | Add ability to use tap macros without using functionsLuke Silva2017-01-27
| | | |
* | | | Merge pull request #1057 from priyadi/selectable_outputJack Humbert2017-02-07
|\ \ \ \ | | | | | | | | | | Implement runtime selectable output (USB or BT)
| * | | | Restrict outputselect to LUFA only for nowPriyadi Iman Nurcahyo2017-02-01
| | | | |
| * | | | Limit outputselect to AVR only for nowPriyadi Iman Nurcahyo2017-02-01
| | | | |
| * | | | Add layer switcher keycodes: OUT_AUTO, OUT_USB, OUT_BT, OUT_BLEPriyadi Iman Nurcahyo2017-02-01
| | | | |
* | | | | Merge pull request #1059 from qmk/hf/algr_tJack Humbert2017-02-06
|\ \ \ \ \ | | | | | | | | | | | | Introduces ALGR_T for dual-function AltGr
| * | | | | Introduces ALGR_T for dual-function AltGrErez Zukerman2017-01-31
| |/ / / /
* | | | | Merge pull request #960 from ofples/feature/combosJack Humbert2017-02-06
|\ \ \ \ \ | | | | | | | | | | | | Keyboard combination triggers
| * | | | | Moved combo processing lower down in process logicOfer Plesser2016-12-16
| | | | | |
| * | | | | Merge branch 'master' into feature/combosOfer Plesser2016-12-16
| |\ \ \ \ \
| * | | | | | Refactored as well as added support for action keys in combosOfer Plesser2016-12-16
| | | | | | |
| * | | | | | Added support for timing out combos if a key as been pressed for longer than ↵Ofer Plesser2016-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | COMBO_TERM
| * | | | | | Implemented basic key combination featureOfer Plesser2016-12-10
| | | | | | |
* | | | | | | Merge pull request #981 from jonasoberschweiber/osx-surrogate-pairsJack Humbert2017-02-06
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | Add support for Unicode supplementary planes on OS X
| * | | | | | Add support for supplementary planes for OS XJonas Oberschweiber2016-12-31
| | | | | | |
* | | | | | | Merge pull request #1030 from SjB/refactor_register_code16Jack Humbert2017-02-06
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | speeding up (un)register_code16
| * | | | | | registering a weak_mods when using register_code16SjB2017-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Scenario: Locking the KC_LSHIFT, and then using a tap dance key that registers a S(KC_9) will unregister the KC_LSHIFT. The tap dance or any keycode that is registered should not have the side effect of cancelling a locked moditifier. We should be using a similar logic as the TMK codes in tmk_core/comman/action.c:158.
| * | | | | | speeding up (un)register_code16SjB2017-01-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In register_code16 and unregister_code16 we call register_code and unregister_code twice, once for the mods and once for the keycode. The (un)register_code have many check to see that keycode we have sent however because we know that we are sending it a mods key, why not just skip all of it and call (un)register_mods instead. This will skip alot of checks and should speedup the loop a little.