diff options
author | Stephan Bösebeck <sb@caluga.de> | 2016-04-16 22:56:33 +0200 |
---|---|---|
committer | Stephan Bösebeck <sb@caluga.de> | 2016-04-16 22:56:33 +0200 |
commit | 38a1d830faa138f6a7e094b3eda33dc528112ec7 (patch) | |
tree | ea7745744f1759741b09577f25faf616fb39dfa7 /tmk_core/common/eeconfig.h | |
parent | 990254edecab782d6f2e71ebfc0b0dda4dc0781e (diff) | |
parent | 5f648b6c4060d586c343ea05562c607e2630dfc4 (diff) | |
download | firmware-38a1d830faa138f6a7e094b3eda33dc528112ec7.tar.gz firmware-38a1d830faa138f6a7e094b3eda33dc528112ec7.tar.bz2 firmware-38a1d830faa138f6a7e094b3eda33dc528112ec7.zip |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'tmk_core/common/eeconfig.h')
-rw-r--r-- | tmk_core/common/eeconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/eeconfig.h b/tmk_core/common/eeconfig.h index 3cd1a174f..ddefca134 100644 --- a/tmk_core/common/eeconfig.h +++ b/tmk_core/common/eeconfig.h @@ -31,6 +31,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define EECONFIG_KEYMAP (uint8_t *)4 #define EECONFIG_MOUSEKEY_ACCEL (uint8_t *)5 #define EECONFIG_BACKLIGHT (uint8_t *)6 +#define EECONFIG_AUDIO (uint8_t *)7 /* debug bit */ @@ -72,4 +73,9 @@ uint8_t eeconfig_read_backlight(void); void eeconfig_write_backlight(uint8_t val); #endif +#ifdef AUDIO_ENABLE +uint8_t eeconfig_read_audio(void); +void eeconfig_write_audio(uint8_t val); +#endif + #endif |