aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode
AgeCommit message (Collapse)Author
2017-02-19Document size added by MIDI_ENABLE (~3800 bytes according to my experiments)Gravatar Gabriel Young
satan/keymaps/midi MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 3 // default text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_TONE_KEYCODE_OCTAVES 2 // fewer octaves text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex
2017-02-19expose midi_configGravatar Gabriel Young
2017-02-19add keycodes for transpose rangeGravatar Gabriel Young
2017-02-19implement modulationGravatar Gabriel Young
2017-02-19add support for pedal cc messagesGravatar Gabriel Young
2017-02-19remove disabled codeGravatar Gabriel Young
2017-02-19Alternative version with a tone arrayGravatar Gabriel Young
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%).
2017-02-19clean up commented codeGravatar Gabriel Young
2017-02-19initial implementation of polyphony using variable length array of notes onGravatar Gabriel Young
2017-02-16fix travis and reduce warningsGravatar Jack Humbert
2017-02-15fix weirdness with arm and modsGravatar Jack Humbert
2017-02-15unique variable nameGravatar Jack Humbert
2017-02-15publicise variablesGravatar Jack Humbert
2017-02-15add unicode common file, get names rightGravatar Jack Humbert
2017-02-15add unicode common file, get names rightGravatar Jack Humbert
2017-02-15split up unicode systems into different filesGravatar Jack Humbert
2017-02-10Implement tap mod dual role for right side mods.Gravatar Priyadi Iman Nurcahyo
2017-02-06Merge pull request #960 from ofples/feature/combosGravatar Jack Humbert
Keyboard combination triggers
2017-02-06Merge pull request #981 from jonasoberschweiber/osx-surrogate-pairsGravatar Jack Humbert
Add support for Unicode supplementary planes on OS X
2017-01-29race condition between oneshot_mods and tap_danceGravatar SjB
since the keycode for a tap dance process gets process only after the TAPPING_TERM timeout, you really only have ONESHOT_TIMEOUT - TAPPING_TERM time to tap or double tap on the key. This fix save the oneshot_mods into the action.state structure and applies the mods with the keycode when it's registered. It also unregisters the mod when the the tap dance process gets reset.
2017-01-23turn off rgb_midi in ezGravatar Jack Humbert
2017-01-09Unregister all mods before inputting Unicode, and reregister afterwardsGravatar Priyadi Iman Nurcahyo
2016-12-31Add support for supplementary planes for OS XGravatar Jonas Oberschweiber
2016-12-23add different scales for music modeGravatar Jack Humbert
2016-12-16Merge branch 'master' into feature/combosGravatar Ofer Plesser
2016-12-16Refactored as well as added support for action keys in combosGravatar Ofer Plesser
2016-12-12specialise music variablesGravatar Jack Humbert
2016-12-10Added support for timing out combos if a key as been pressed for longer than ↵Gravatar Ofer Plesser
COMBO_TERM
2016-12-10Implemented basic key combination featureGravatar Ofer Plesser
2016-11-28Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Gravatar Jack Humbert
2016-11-26fix strict-prototypes warningGravatar Priyadi Iman Nurcahyo
2016-11-12mergingGravatar Jack Humbert
2016-11-10Keep unicode's input_mode through a power cycleGravatar Zach Nielsen
2016-10-26Merge pull request #844 from priyadi/unicode_wincompose_inputGravatar Jack Humbert
Unicode WinCompose input method
2016-10-23Unicode WinCompose input methodGravatar Priyadi Iman Nurcahyo
2016-10-23UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitationsGravatar Priyadi Iman Nurcahyo
2016-10-16working with power limitGravatar Jack Humbert
2016-10-10Unicode map framework. Allow unicode up to 0xFFFFF using separateGravatar Priyadi Iman Nurcahyo
mapping table
2016-10-02Declare Unicode method hex_to_keycode() as “weak”Gravatar coderkun
Declare Unicode method hex_to_keycode() as “weak” to be able to override it in keymaps.
2016-09-29Merge pull request #794 from AGausmann/midi-patchGravatar Jack Humbert
Missing ifdef statement
2016-09-29Missing ifdef statementGravatar Adam Gausmann
2016-09-21add user_data fieldGravatar Pavlos Vinieratos
2016-09-21formattingGravatar Pavlos Vinieratos
2016-09-21restore each_tap callbackGravatar Pavlos Vinieratos
2016-09-01tap-dance: Do not start a sequence on keyupGravatar Gergely Nagy
There was an odd case, which confused the hell out of tap-dance: suppose you had a number of tap-dance keys, on a layer, and as part of the tap-dance, you turned that layer off - or had it on one-shot to begin with. In this case, the keydown event would trigger the tap-dance key, but the keyup would not. This had two funky consequences: - tap-dance did not correctly register that the dance has ended. - pressing any other tap-dance key would interrupt the previous tap-dance, and potentially input unwanted characters. To fix this, we simply do not start a tap-dance sequence on keyup, only when it is pressed. This way the previous sequence has enough time to time-out and finish properly, and we don't get confused. This fixes algernon/ergodox-layout#107. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-08-31process_unicode: Add get_unicode_input_mode()Gravatar Gergely Nagy
There may be cases where one would like to know the current Unicode input mode, without having to keep track of it themselves. Add a function that does just this. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-08-24quantum: Move qk_ucis_state to process_unicode.cGravatar Gergely Nagy
In order to not declare the same variable in multiple objects (which happens when building UCIS-enabled keymap for both the ErgoDox EZ and the ErgoDox Infinity), move the declaration to the .c file, and keep only an extern reference in the header. Many thanks to @fredizzimo for spotting the error in Travis, and suggesting the fix. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-08-21Drop method to set Unicode input key and declare start and finish methods as ↵Gravatar coderkun
“weak” instead
2016-08-21Add method to set Unicode input key for ISO 14755Gravatar coderkun
https://github.com/jackhumbert/qmk_firmware/issues/672
2016-08-18Add a register/unregister_code16 pair of functionsGravatar Gergely Nagy
These functions register not only the 8bit keycode, but the modifiers too. It doesn't handle the full range of the upper 8bits, just the mods, but that's a good start. Changed the tap-dance pair functions to use these, so one can do: `ACTION_TAP_DANCE_DOUBLE (KC_COLN, KC_SCLN)` ...and that will do the right thing. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>