summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_dynamic_macro.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix Dynamic Macro Compilation for avr-gcc 5.4.0 + Linux (#21653)James Young2023-08-011-1/+1
| | | | Co-authored-by: Joel Challis <git@zvecr.com>
* process_keycode: remove direct `quantum.h` includes (#21486)Ryan2023-07-111-0/+9
|
* [Core] Move dynamic macro "stop recording" logic to a function (#21108)Ariane Emory2023-06-021-55/+62
|
* Add direction to dynamic_macro_record_start_user (#19689)Johannes H. Jensen2023-04-031-5/+5
|
* Normalise Dynamic Macro keycodes (#18939)Ryan2022-11-031-13/+13
| | | | | | | | | | | | | * `DYN_REC_START1` -> `QK_DYNAMIC_MACRO_RECORD_START_1` * `DYN_REC_START2` -> `QK_DYNAMIC_MACRO_RECORD_START_2` * `DYN_MACRO_PLAY1` -> `QK_DYNAMIC_MACRO_PLAY_1` * `DYN_MACRO_PLAY2` -> `QK_DYNAMIC_MACRO_PLAY_2` * `DYN_REC_STOP` -> `QK_DYNAMIC_MACRO_RECORD_STOP` * Update docs
* Prevent tap dance from wiping dynamic macros (#17880)Jason Ken Adhinarta2022-10-031-8/+14
|
* Added Wait time to sending each Keys for Dynamic Macros function (#16800)FREEWING.JP2022-07-021-0/+3
| | | Co-authored-by: Joel Challis <git@zvecr.com>
* Format code according to conventions (#16322)QMK Bot2022-02-121-4/+12
|
* [Bug] Fix layer_state restoration at end of dynamic macro feature (#16230)Desprez Jean-Marc2022-02-061-1/+1
|
* format code according to conventions [skip ci]QMK Bot2020-07-071-2/+2
|
* Allowing Pressing the Start Buttons Again to Stop Dynamic Macro Recording ↵Dongfeng Yu2020-07-071-3/+5
| | | | (#9446)
* [Core] Convert Dynamic Macro to a Core Feature (#5948)Drashna Jaelre2019-11-041-0/+257
* Convert Dynamic Macro to a Core Feature This imports the code from Dynamic Macro into the core code, and handles it, as such. This deprecates the old method but does not remove it, for legacy support. This way, no existing user files need to be touched. Additionally, this reorganizes the documentation to better reflect the changes. Also, it adds user hooks to the feature so users can customize the existing functionality. Based heavily on and closes #2976 * Apply suggestions from code review Co-Authored-By: fauxpark <fauxpark@gmail.com> Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Cleanup based on feedback * Add short-form keycodes and document them - add short-form keycodes to quantum/quantum_keycodes.h - document the new aliases in docs/feature_dynamic_macros.md * Add Dynamic Macros section and keycodes to docs/keycodes.md * Make anti-nesting optional * Add documentation for DYNAMIC_MACRO_NO_NESTING option * Fix Merge artifacts * Fix formatting typo in docs Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Remove DYNAMIC_MACRO_RANGE as it's not needed * Fix includes and layer var type