diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-12 20:54:37 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-11-12 20:54:37 -0500 |
commit | 33e62c080c9161a0fc921c90ed299a67fc2e1799 (patch) | |
tree | 253ea910d8f2ba464ab28709f5f93d09b27c05fd /quantum/dynamic_macro.h | |
parent | a889b899e2cf52b3b7807d8a7ad39f12e0761a10 (diff) | |
parent | 631b8999a737ec73610f8b569b1f775cadf08172 (diff) | |
download | qmk_firmware-33e62c080c9161a0fc921c90ed299a67fc2e1799.tar.gz qmk_firmware-33e62c080c9161a0fc921c90ed299a67fc2e1799.zip |
merging
Diffstat (limited to 'quantum/dynamic_macro.h')
-rw-r--r-- | quantum/dynamic_macro.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/quantum/dynamic_macro.h b/quantum/dynamic_macro.h index a3ad61bc7..e6dbc5b9c 100644 --- a/quantum/dynamic_macro.h +++ b/quantum/dynamic_macro.h | |||
@@ -8,8 +8,13 @@ | |||
8 | /* May be overridden with a custom value. Be aware that the effective | 8 | /* May be overridden with a custom value. Be aware that the effective |
9 | * macro length is half of this value: each keypress is recorded twice | 9 | * macro length is half of this value: each keypress is recorded twice |
10 | * because of the down-event and up-event. This is not a bug, it's the | 10 | * because of the down-event and up-event. This is not a bug, it's the |
11 | * intended behavior. */ | 11 | * intended behavior. |
12 | #define DYNAMIC_MACRO_SIZE 256 | 12 | * |
13 | * Usually it should be fine to set the macro size to at least 256 but | ||
14 | * there have been reports of it being too much in some users' cases, | ||
15 | * so 128 is considered a safe default. | ||
16 | */ | ||
17 | #define DYNAMIC_MACRO_SIZE 128 | ||
13 | #endif | 18 | #endif |
14 | 19 | ||
15 | /* DYNAMIC_MACRO_RANGE must be set as the last element of user's | 20 | /* DYNAMIC_MACRO_RANGE must be set as the last element of user's |