Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Wait time to sending each Keys for Dynamic Macros function #16800

Merged
merged 5 commits into from
Jul 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update quantum/process_keycode/process_dynamic_macro.c
Co-authored-by: Joel Challis <git@zvecr.com>
  • Loading branch information
FREEWING-JP and zvecr authored Apr 6, 2022
commit 0288000ab55eacd5cfb19f33f4c1ee52ffd02d3c
4 changes: 2 additions & 2 deletions quantum/process_keycode/process_dynamic_macro.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ void dynamic_macro_play(keyrecord_t *macro_buffer, keyrecord_t *macro_end, int8_
while (macro_buffer != macro_end) {
process_record(macro_buffer);
macro_buffer += direction;
#ifdef DYNAMIC_MACRO_WAIT
wait_ms(DYNAMIC_MACRO_WAIT);
#ifdef DYNAMIC_MACRO_DELAY
wait_ms(DYNAMIC_MACRO_DELAY);
#endif
}

Expand Down