summaryrefslogtreecommitdiff
path: root/docs/feature_dynamic_macros.md
diff options
context:
space:
mode:
authorFREEWING.JP <freewing.jp@gmail.com>2022-07-02 20:48:26 +0900
committerGitHub <noreply@github.com>2022-07-02 21:48:26 +1000
commit9dc7b9d40cfa199875cdc9e2e05b15d3f463b415 (patch)
treeb626564e2aeb9021b07ecd2e1dbf92e2d0465ef0 /docs/feature_dynamic_macros.md
parent0856b36139e3948604aeeb99eececdcccfd2298a (diff)
Added Wait time to sending each Keys for Dynamic Macros function (#16800)
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'docs/feature_dynamic_macros.md')
-rw-r--r--docs/feature_dynamic_macros.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/feature_dynamic_macros.md b/docs/feature_dynamic_macros.md
index 01f2a0ca40..0660e0c065 100644
--- a/docs/feature_dynamic_macros.md
+++ b/docs/feature_dynamic_macros.md
@@ -35,6 +35,7 @@ There are a number of options added that should allow some additional degree of
|`DYNAMIC_MACRO_SIZE` |128 |Sets the amount of memory that Dynamic Macros can use. This is a limited resource, dependent on the controller. |
|`DYNAMIC_MACRO_USER_CALL` |*Not defined* |Defining this falls back to using the user `keymap.c` file to trigger the macro behavior. |
|`DYNAMIC_MACRO_NO_NESTING` |*Not Defined* |Defining this disables the ability to call a macro from another macro (nested macros). |
+|`DYNAMIC_MACRO_DELAY` |*Not Defined* |Sets the waiting time (ms unit) when sending each key. |
If the LEDs start blinking during the recording with each keypress, it means there is no more space for the macro in the macro buffer. To fit the macro in, either make the other macro shorter (they share the same buffer) or increase the buffer size by adding the `DYNAMIC_MACRO_SIZE` define in your `config.h` (default value: 128; please read the comments for it in the header).