diff options
| author | Drashna Jaelre | 2018-05-31 21:24:10 +0200 |
|---|---|---|
| committer | skullydazed | 2018-09-25 22:28:36 +0200 |
| commit | cfb1b353eef290ea4eddd7cfcb4617ca25d440d2 (patch) | |
| tree | 403f968d510db001e9a81f022415a3bfdfb6bdae /quantum/audio | |
| parent | e72e4b6920299176a322a2862f930b7ee5f73dff (diff) | |
Add functions so you can configure programatically
Diffstat (limited to 'quantum/audio')
| -rw-r--r-- | quantum/audio/audio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/audio/audio.h b/quantum/audio/audio.h index da09b2bcd2..8136c5b258 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; |