diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-10-10 06:20:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-10 06:20:46 +0200 |
commit | 0f119e09a57c53cd44572dc958d316bb979ce298 (patch) | |
tree | 8e2069674ae80c35e1ad322fe913549fb23489d1 /quantum/dynamic_macro.h | |
parent | 03b6fcdaf034392e27752a9bd2c11de06a166e39 (diff) | |
parent | 70f32842e5d94f14d05c1f9adcb1b1144a25a132 (diff) | |
download | qmk_firmware-0f119e09a57c53cd44572dc958d316bb979ce298.tar.gz qmk_firmware-0f119e09a57c53cd44572dc958d316bb979ce298.tar.xz |
Merge pull request #810 from Vifon/dynamic_macros
Reduce the default dynamic macro buffer
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 @@ /* May be overridden with a custom value. Be aware that the effective * macro length is half of this value: each keypress is recorded twice * because of the down-event and up-event. This is not a bug, it's the - * intended behavior. */ -#define DYNAMIC_MACRO_SIZE 256 + * intended behavior. + * + * Usually it should be fine to set the macro size to at least 256 but + * there have been reports of it being too much in some users' cases, + * so 128 is considered a safe default. + */ +#define DYNAMIC_MACRO_SIZE 128 #endif /* DYNAMIC_MACRO_RANGE must be set as the last element of user's |