diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-16 19:31:32 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-16 19:31:32 -0500 |
commit | 4aea806aa8aa585930a89b67d7206050ac6adb3a (patch) | |
tree | ad8b36cc2ebb7500a531ff4601a6fbdf1086ffe2 /tmk_core/common/eeconfig.h | |
parent | b5c22ab5b5b77d5e21cc4145831608eed6756ad7 (diff) | |
parent | b8d2e66638409066661e7dd3c66473d583256ec5 (diff) | |
download | qmk_firmware-4aea806aa8aa585930a89b67d7206050ac6adb3a.tar.gz qmk_firmware-4aea806aa8aa585930a89b67d7206050ac6adb3a.zip |
Adding Musical Notes
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 3cd1a174f6..ddefca1347 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 |