summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/eeconfig.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-04-16 05:38:21 +0200
committerJack Humbert <jack.humb@gmail.com>2016-04-16 05:38:21 +0200
commit0faa18eab996c2cfcc5da0b60b702f52335c5854 (patch)
tree33ed4babd10d6e8051edafa48f142e0e78aeeed5 /tmk_core/common/eeconfig.h
parent91119636631f24bd1bf97f32c3d39f8828da625f (diff)
downloadqmk_firmware-0faa18eab996c2cfcc5da0b60b702f52335c5854.tar.gz
qmk_firmware-0faa18eab996c2cfcc5da0b60b702f52335c5854.tar.xz
audio enable stored in eeprom
Diffstat (limited to 'tmk_core/common/eeconfig.h')
-rw-r--r--tmk_core/common/eeconfig.h6
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