summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode
AgeCommit message (Collapse)AuthorFilesLines
2018-07-16Adds support for Planck Rev 6 (#2666)Jack Humbert4-15/+29
* initial files for rev 6 with encoder * music map init, dip scan added * adds ws2812 driver for arm * flesh out dip and encoder support * adds default encoder res * adds default encoder res * start muse implementation * muse working with encoder as control * flip direction * try mouse wheel again * dont break other revs * dont break other revs * conditional autio * pwm ws driver (not working) * update build includes for chibios * update ws2812 driver/config * last commit for glasser code * working example * remove rgb for now * finish up rev6 * working encoder keycodes * add warnings to planck keymaps about the LAYOUT
2018-07-15Fix tapdance when one-shot is disabled.Joe Wasson1-0/+6
2018-05-17Fixed sprintf overflowM1K3L081-1/+1
2018-05-16Add default to LEADER_TIMEOUT in case it's not defined (#2818)Drashna Jaelre2-3/+6
* Add default to LEADER_TIMEOUT in case it's not defined * Update Leader Timeout default
2018-05-08updated music maskJack Humbert2-10/+28
2018-05-02Update to drashna keymaps and userspace (#2876)Drashna Jaelre1-1/+0
* Fix Unicode sample * Add irony mark * Remove unpretty keymaps * Add QMK DFU and Conditional Music Mode * Unicode fixes * Unicode fixes * Make layer indication more modular * Finish removing Faux Click * Cleanup of UserSpace and addition of 'update_tri_layer_state' function * Add modifier status indicators to Orthodox * Remove tri layer function * Minor tweaks * Remove the Orthodox's Indicator's reliance on layer_state_set * Add custom EEPROM settings * Make EEPROM config more efficient * Viterbi Config * Add Iris Keyboard layout and Userspace cleanup * Iris keyboard tweaks * Use Grave Escape on Iris * Update Readmes
2018-05-01Added command history to terminal with other bug fixes, added new song to ↵M1K1-14/+111
song_list.h (#2855) * Implemented Terminal + added song to song_list.h * Added wait() in order to prevent misbehaviour of 'command not found'
2018-04-28Fix Clicky Down codeDrashna Jaelre1-1/+1
2018-04-21Fix Audio Clicky sub-feature (#2784)Drashna Jaelre3-65/+79
* Fix Audio Clicky feature * Add to features
2018-04-21Update to drashna keymaps and userspace (#2756)Drashna Jaelre1-1/+1
* Re-add NO_SECRETS option * Add Thumb Clusters defines for default layout * Minor tweaks * More Minor tweaks * Revert Orthodox layers and move function keys around * Fix keymap so it will compile under the Infinity Since I haven't added 'pretty' layouts to it yet * Cleanup of userspace * Cleanup keymaps * OMG fix Workman * Move mods layer key around * Reduce debounce in Ergodox EZ * Fix Infinity layers * Add list of pins used by Ergdox EZ for easy reference * Revert "Reduce debounce in Ergodox EZ" This reverts commit 8a3db2673b419ef8032c40a6d29156cef632f9cd. * Add Clicky toggle to Orthodox * Fix Audio Clicky keycode * Enable Faux Clicky by default * Add Unicode stuff
2018-04-19Add Faux Clicking as subset of Audio feature (#2748)Drashna Jaelre1-1/+68
* Add Faux Clicky to main Audio feature * Make clicky settings user configurable * Add additional documentation * Don't play when music mode is enabled (hopefully)
2018-04-19Added bending to MIDI (#2740)adiron1-0/+20
This is done via MI_BENDD and MI_BENDU. At the moment the value is hardcoded and cannot be adjusted (future commit?) and is the max for the `midi_send_pitchbend` function (up or down). `MI_BENDD` and `MI_BENDU` both require `#define MIDI_ADVANCED` MIDI pitch bend was already implemented in `protocol/midi.c`, I merely added the keycodes to trigger them. :) (thanks to Jack, two years ago in commit fb4fe52c apparently)
2018-04-07Improve state/chord handling and clean up namespaceSeebs2-49/+91
Some values that can never, ever, change were held in local variables, rather than in PROGMEM. Fixed. Change "pressed" to a signed int so the test for < 0 makes sense, and to avoid possible weird failure modes in the case where a key release comes in when pressed is already zero. (Shouldn't happen, sure, but computers are weird.) A lot of things in process_steno had external linkage for no particular reason. They've been marked static. Stuff still builds. Distinguish between currently-held keys and keys that have been held, and expose these values through a nicely-named API so other code could, say, check on the current set of steno chording in order to make displays. Also in passing fix up the "state" value having external linkage so it could clash with other people's variable declarations. The API also provides hooks for key processing and steno chord events, so you can monitor those events without having to run in matrix_scan_user and recheck the values directly. Also document these. There is no path through processing a key that doesn't end with a return false, so the nested return foo() are gone and we just return false.
2018-03-26add grave to auto-shift.Jason Stillwell1-0/+1
2018-03-16Rule to enable Modifiers with Auto-Shift (#2542)Jason Stillwell1-0/+4
* Re-enable modifiers with auto-shift * Auto-shift modifiers rule * missed a line * Documentation * fixing whitespace
2018-03-16Fixed various keymaps and the allocation of "key_combos" (#2526)Brian Choromanski1-1/+1
* Fixed plank keymaps so that they will compile for planck light * tv44:budi now compiles * s60_x:amnesia0287 now compiles * Fixed allocation of key_combos so that narze keymap for planck can compile correctly * Disabled rgb on ergodone and infinity * Enabled tap dance so it compiles * Added return statement so it compiles * If compiling on light disable extra functionality * Properly redefined variable so it compiles
2018-02-08Merge ChibiOS and LUFA descriptor support (#2362)fredizzimo2-27/+36
* Move lufa descriptor to protocol/usb_descriptor * Try to compile usb_descriptor on ChibiOS * Add lufa_utils for ChibiOS Lufa USB descriptors for ChibiOS * More lufa_util compatibility fixes * First compiling version of shared USB descriptor * Send the usb descriptors * Fix the CONSOLE output on ChibiOS * Add errors for unsupported interfaces * Enable support for vitual serial port USB descriptors * Implement virtual serial port for ChibiOS * Cleanup the lufa_utils Use the default lufa header files * Add raw hid support for ChibiOS This is completely untested * Enable midi compilation on ChibiOS * Move midi functionality out of lufa.c * Don't register sysex callback when not needed * ChibiOS compilation fixes * Update ChibiOS submodule * Fix the Midi USB descriptor It didn't work properly when both Midi and Virtual serial port was enabled. * Add MIDI support for ChibiOS * Fix USB descriptor strings on ChibiOS * Use serial usb driver for raw hid * Generalize the ChibiOS stream like drivers This makes the initialization much more simple and eliminates a lot of the code duplication. * Convert console output to chibios stream driver * Fixes for ChibiOS update * Update the ChibiOS contrib submodule To include the usb data toggle synchronization fixes * Fix duplicate reset enumeration on ChibiOS * Add missing include * Add number of endpoints check for ChibiOS * Enable serial USB driver on all keyboards * Add missing includes when API is enabled withot midi * Add another missing inlcude
2018-02-04Fixes to get tap dance to fire at proper places (#2272)scauligi2-31/+49
* tap dance fixes: fire immediately upon completion and also get properly interrupted before macros * bugfix for tapdance improvement * fix build
2018-01-12added the possibility to hav shifted(modded) tap dancepmalecka2-0/+5
2017-12-20Add on/off/toggle keycodes for Auto ShiftDrashna Jael're2-10/+38
2017-12-20Add toggle option to AutoShiftU-LANDSRAAD\drashna1-0/+13
2017-12-10fixes midi compile errorJack Humbert1-1/+3
2017-12-10fix up midi stuff w/music modeJack Humbert2-8/+79
2017-10-30Fix for issue https://github.com/qmk/qmk_firmware/issues/1751Jody Foo1-1/+1
2017-10-30Fix process_combo.c compile warningShihpin Tseng1-1/+5
2017-09-18KC_TILD should not have been listed as an auto shift keyJeremy Cowgar1-1/+0
2017-09-18Added Auto Shift, tap key = normal, hold key = shifted state.Jeremy Cowgar2-0/+196
2017-09-12Updates send_string functionality, adds terminal feature (#1657)Jack Humbert3-0/+304
* implement basic terminal stuff * modify send_string to read normal strings too * add files bc yeah. working pgm detected * pgm detection apparently not working * adds send string keycodes, additional keycode support in send string * implement arguments * [terminal] add help command * [terminal] adds keycode and keymap functions * [terminal] adds nop.h, documentation * update macro docs
2017-09-11fix for toggle tap dancePtomerty1-1/+1
2017-08-30add UC_OSX_RALT to make unicode use the Right Alt key on OSXMarco Fontani3-2/+9
2017-08-20Allow steno to build when NKRO is not defined.Joe Wasson1-5/+4
Was missing eeprom.h, MAX(), and memset.
2017-08-16Wrapped process_leader.c in #ifndef DISABLE_LEADER to allow compilation with ↵Martin Sandiford1-0/+4
DISABLE_LEADER defined.
2017-08-08Rename SHIFT macro to BV_64Fredric Silberberg1-4/+4
2017-08-08Added support for locking One Shot modifiers.Fredric Silberberg2-12/+31
2017-08-08Remove hex print code.Fredric Silberberg1-1/+0
2017-08-08Initial implementation of the key_lock feature.Fredric Silberberg2-0/+144
2017-08-02tap-dance: key + layer helperGergely Nagy2-0/+32
This adds the `ACTION_TAP_DANCE_DUAL_ROLE` helper, which makes it easy to have keys that act as a key on the first tap, and as a layer toggle on the second. Fixes #1532, reported by @Ptomerty. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2017-07-27Add copyright to steno files.Joe Wasson2-1/+31
2017-07-27Add support for GeminiPR steno protocol.Joe Wasson2-23/+96
This protocol breaks out "duplicate" keys into their own entry in the packet so that more complicated logic can be done on the software side, including support for additional languages and alternative theories.
2017-07-27Add TX Bolt protocol support for StenographyJoe Wasson2-0/+94
Requires virtser; Allows QMK to speak the TX BOlt protocol used by stenography machines and software (such as Plover). The upside is that Plover can be configured to listen only to TX Bolt allow the keyboard to switch layers without need to enable/disable the Plover software, or to have a second non-Steno keyboard work concurrently.
2017-07-24adds option for alt pitch standardsJack Humbert1-1/+5
2017-07-23adds music mode, music mode songs, music maskJack Humbert3-53/+99
2017-07-23escape song playing in musicJack Humbert1-9/+15
2017-07-23clean-up planck and preonic keymaps, move audio stuff aroundJack Humbert1-6/+14
2017-05-30switched to uint8 and 16Nick Choi1-2/+2
2017-05-25removed need to set customtapping term 0. defaults to 0 alreadyNick Choi1-1/+0
2017-05-25changed -1 to 0 can't have negative unsigned ints 🤔Nick Choi1-1/+1
2017-05-25moved specific tap term to its own functionNick Choi2-4/+14
included custom_tapping_term in action struct
2017-05-25Added per case tapping term, updated FF-nikchi keymap.Nick Choi2-4/+10
2017-05-15emoji support butNick Choi1-1/+1