<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qmk_firmware/quantum/process_keycode/process_dynamic_macro.h, branch master</title>
<subtitle>QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)</subtitle>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/'/>
<entry>
<title>Add dynamic macro keyboard callbacks (#24142)</title>
<updated>2024-08-18T00:35:10+00:00</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2024-08-18T00:35:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/commit/?id=ab4c13e835060f6fb921a7d206e28f9525d34178'/>
<id>ab4c13e835060f6fb921a7d206e28f9525d34178</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>process_keycode: remove direct `quantum.h` includes (#21486)</title>
<updated>2023-07-11T07:07:24+00:00</updated>
<author>
<name>Ryan</name>
<email>fauxpark@gmail.com</email>
</author>
<published>2023-07-11T07:07:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/commit/?id=eee0384167b965c60120e1222bc24c0b40cadac4'/>
<id>eee0384167b965c60120e1222bc24c0b40cadac4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Core] Move dynamic macro "stop recording" logic to a function (#21108)</title>
<updated>2023-06-02T21:46:04+00:00</updated>
<author>
<name>Ariane Emory</name>
<email>97994360+ariane-emory@users.noreply.github.com</email>
</author>
<published>2023-06-02T21:46:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/commit/?id=c754f644dcccc44e09a3e6f9986ad70ec2fc3b54'/>
<id>c754f644dcccc44e09a3e6f9986ad70ec2fc3b54</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add direction to dynamic_macro_record_start_user (#19689)</title>
<updated>2023-04-03T03:01:07+00:00</updated>
<author>
<name>Johannes H. Jensen</name>
<email>joh@pseudoberries.com</email>
</author>
<published>2023-04-03T03:01:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/commit/?id=68efea70b268aceb28c28abb26641fad8d6acefd'/>
<id>68efea70b268aceb28c28abb26641fad8d6acefd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Core] Convert Dynamic Macro to a Core Feature (#5948)</title>
<updated>2019-11-05T06:59:13+00:00</updated>
<author>
<name>Drashna Jaelre</name>
<email>drashna@live.com</email>
</author>
<published>2019-11-05T06:59:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/qmk_firmware/commit/?id=542cb0a8ce3f324c6bd46751d733daf86384a8f6'/>
<id>542cb0a8ce3f324c6bd46751d733daf86384a8f6</id>
<content type='text'>
* 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 &lt;fauxpark@gmail.com&gt;
Co-Authored-By: noroadsleft &lt;18669334+noroadsleft@users.noreply.github.com&gt;

* 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 &lt;18669334+noroadsleft@users.noreply.github.com&gt;

* Remove DYNAMIC_MACRO_RANGE as it's not needed

* Fix includes and layer var type
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 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 &lt;fauxpark@gmail.com&gt;
Co-Authored-By: noroadsleft &lt;18669334+noroadsleft@users.noreply.github.com&gt;

* 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 &lt;18669334+noroadsleft@users.noreply.github.com&gt;

* Remove DYNAMIC_MACRO_RANGE as it's not needed

* Fix includes and layer var type
</pre>
</div>
</content>
</entry>
</feed>
