summaryrefslogtreecommitdiffstats
path: root/quantum/audio
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-05-31 21:24:10 +0200
committerskullydazed <skullydazed@users.noreply.github.com>2018-09-25 22:28:36 +0200
commitcfb1b353eef290ea4eddd7cfcb4617ca25d440d2 (patch)
tree403f968d510db001e9a81f022415a3bfdfb6bdae /quantum/audio
parente72e4b6920299176a322a2862f930b7ee5f73dff (diff)
downloadqmk_firmware-cfb1b353eef290ea4eddd7cfcb4617ca25d440d2.tar.gz
qmk_firmware-cfb1b353eef290ea4eddd7cfcb4617ca25d440d2.tar.xz
Add functions so you can configure programatically
Diffstat (limited to 'quantum/audio')
-rw-r--r--quantum/audio/audio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/audio/audio.h b/quantum/audio/audio.h
index da09b2bcd..8136c5b25 100644
--- a/quantum/audio/audio.h
+++ b/quantum/audio/audio.h
@@ -40,7 +40,8 @@ typedef union {
uint8_t raw;
struct {
bool enable :1;
- uint8_t level :7;
+ bool clicky_enable :1;
+ uint8_t level :6;
};
} audio_config_t;