diff options
| author | Jeremy Cowgar <jeremy@cowgar.com> | 2017-09-17 01:33:28 -0400 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2017-09-18 17:08:18 -0400 |
| commit | abba393f57fdfb9b7abd92cc7925a605619902b2 (patch) | |
| tree | 83db1c4e0aaaca008a49312b9d2d9197d1837f7b /docs/understanding_qmk.md | |
| parent | 87021371e6273258a9385a0a5ed4cfd344f9de8f (diff) | |
| download | qmk_firmware-abba393f57fdfb9b7abd92cc7925a605619902b2.tar.gz qmk_firmware-abba393f57fdfb9b7abd92cc7925a605619902b2.zip | |
Added Auto Shift, tap key = normal, hold key = shifted state.
Diffstat (limited to 'docs/understanding_qmk.md')
| -rw-r--r-- | docs/understanding_qmk.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md index 2ac4f3036..99c2306d6 100644 --- a/docs/understanding_qmk.md +++ b/docs/understanding_qmk.md | |||
| @@ -147,6 +147,7 @@ The `process_record()` function itself is deceptively simple, but hidden within | |||
| 147 | * [`bool process_unicode(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_unicode.c#L22) | 147 | * [`bool process_unicode(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_unicode.c#L22) |
| 148 | * [`bool process_ucis(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_ucis.c#L91) | 148 | * [`bool process_ucis(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_ucis.c#L91) |
| 149 | * [`bool process_printer(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_printer.c#L77) | 149 | * [`bool process_printer(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_printer.c#L77) |
| 150 | * [`bool process_auto_shift(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_auto_shift.c#L47) | ||
| 150 | * [`bool process_unicode_map(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_unicodemap.c#L47) | 151 | * [`bool process_unicode_map(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_unicodemap.c#L47) |
| 151 | * [Identify and process quantum specific keycodes](https://github.com/qmk/qmk_firmware/blob/master/quantum/quantum.c#L211) | 152 | * [Identify and process quantum specific keycodes](https://github.com/qmk/qmk_firmware/blob/master/quantum/quantum.c#L211) |
| 152 | 153 | ||
