diff options
author | Wilba <Jason.S.Williams@gmail.com> | 2020-04-07 05:27:44 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 20:27:44 +0100 |
commit | 9bfa713421ccd62fe49493b282d02310accf0523 (patch) | |
tree | b4045447627e4ec53c6d2133487cf70b59f13571 /quantum/via.h | |
parent | b6fc3ad8e71134d10bf6ed8979bb505f33db92b9 (diff) | |
download | qmk_firmware-9bfa713421ccd62fe49493b282d02310accf0523.tar.gz |
Configurable VIA layout options default value (#8707)
Diffstat (limited to 'quantum/via.h')
-rw-r--r-- | quantum/via.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/via.h b/quantum/via.h index 012547e05..373843f90 100644 --- a/quantum/via.h +++ b/quantum/via.h @@ -37,6 +37,14 @@ # define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 1 #endif +// Allow override of the layout options default value. +// This requires advanced knowledge of how VIA stores layout options +// and is only really useful for setting a boolean layout option +// state to true by default. +#ifndef VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT +# define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x00000000 +#endif + // The end of the EEPROM memory used by VIA // By default, dynamic keymaps will start at this if there is no // custom config |