diff options
| author | Joshua Diamond <josh@windowoffire.com> | 2021-01-31 17:25:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-01 09:25:55 +1100 |
| commit | ae4ee7553abfaa2149fcea04c3cbee20f3b8c7a5 (patch) | |
| tree | 8baafbc7332a9ed95e5ff35de3f9ed5f21826f4f /quantum/audio | |
| parent | db11a2a1fd7a7ff9c458e8ec9e963a61a1192bf3 (diff) | |
| download | qmk_firmware-ae4ee7553abfaa2149fcea04c3cbee20f3b8c7a5.tar.gz qmk_firmware-ae4ee7553abfaa2149fcea04c3cbee20f3b8c7a5.zip | |
Stop sounds when suspended (#11553)
* fix stopping audio on suspend vs. startup sound
* trim firmware size
* fix stuck audio on startup (ARM)
Diffstat (limited to 'quantum/audio')
| -rw-r--r-- | quantum/audio/audio.h | 1 | ||||
| -rw-r--r-- | quantum/audio/audio_avr.c | 2 | ||||
| -rw-r--r-- | quantum/audio/audio_chibios.c | 15 | ||||
| -rw-r--r-- | quantum/audio/audio_pwm.c | 11 |
4 files changed, 27 insertions, 2 deletions
diff --git a/quantum/audio/audio.h b/quantum/audio/audio.h index bc00cd19e..dccf03d5f 100644 --- a/quantum/audio/audio.h +++ b/quantum/audio/audio.h | |||
| @@ -83,6 +83,7 @@ void increase_tempo(uint8_t tempo_change); | |||
| 83 | void decrease_tempo(uint8_t tempo_change); | 83 | void decrease_tempo(uint8_t tempo_change); |
| 84 | 84 | ||
| 85 | void audio_init(void); | 85 | void audio_init(void); |
| 86 | void audio_startup(void); | ||
| 86 | 87 | ||
| 87 | #ifdef PWM_AUDIO | 88 | #ifdef PWM_AUDIO |
| 88 | void play_sample(uint8_t* s, uint16_t l, bool r); | 89 | void play_sample(uint8_t* s, uint16_t l, bool r); |
diff --git a/quantum/audio/audio_avr.c b/quantum/audio/audio_avr.c index 5a96bf643..1bac43bb4 100644 --- a/quantum/audio/audio_avr.c +++ b/quantum/audio/audio_avr.c | |||
| @@ -227,7 +227,9 @@ void audio_init() { | |||
| 227 | 227 | ||
| 228 | audio_initialized = true; | 228 | audio_initialized = true; |
| 229 | } | 229 | } |
| 230 | } | ||
| 230 | 231 | ||
| 232 | void audio_startup() { | ||
| 231 | if (audio_config.enable) { | 233 | if (audio_config.enable) { |
| 232 | PLAY_SONG(startup_song); | 234 | PLAY_SONG(startup_song); |
| 233 | } | 235 | } |
diff --git a/quantum/audio/audio_chibios.c b/quantum/audio/audio_chibios.c index 1863ae140..dddb8f135 100644 --- a/quantum/audio/audio_chibios.c +++ b/quantum/audio/audio_chibios.c | |||
| @@ -282,6 +282,12 @@ void audio_init() { | |||
| 282 | dacStart(&DACD2, &dac1cfg2); | 282 | dacStart(&DACD2, &dac1cfg2); |
| 283 | 283 | ||
| 284 | /* | 284 | /* |
| 285 | * Start the note timer | ||
| 286 | */ | ||
| 287 | gptStart(&GPTD8, &gpt8cfg1); | ||
| 288 | gptStartContinuous(&GPTD8, 2U); | ||
| 289 | |||
| 290 | /* | ||
| 285 | * Starting GPT6/7 driver, it is used for triggering the DAC. | 291 | * Starting GPT6/7 driver, it is used for triggering the DAC. |
| 286 | */ | 292 | */ |
| 287 | START_CHANNEL_1(); | 293 | START_CHANNEL_1(); |
| @@ -295,10 +301,12 @@ void audio_init() { | |||
| 295 | 301 | ||
| 296 | audio_initialized = true; | 302 | audio_initialized = true; |
| 297 | 303 | ||
| 304 | stop_all_notes(); | ||
| 305 | } | ||
| 306 | |||
| 307 | void audio_startup() { | ||
| 298 | if (audio_config.enable) { | 308 | if (audio_config.enable) { |
| 299 | PLAY_SONG(startup_song); | 309 | PLAY_SONG(startup_song); |
| 300 | } else { | ||
| 301 | stop_all_notes(); | ||
| 302 | } | 310 | } |
| 303 | } | 311 | } |
| 304 | 312 | ||
| @@ -638,6 +646,9 @@ bool is_playing_notes(void) { return playing_notes; } | |||
| 638 | bool is_audio_on(void) { return (audio_config.enable != 0); } | 646 | bool is_audio_on(void) { return (audio_config.enable != 0); } |
| 639 | 647 | ||
| 640 | void audio_toggle(void) { | 648 | void audio_toggle(void) { |
| 649 | if (audio_config.enable) { | ||
| 650 | stop_all_notes(); | ||
| 651 | } | ||
| 641 | audio_config.enable ^= 1; | 652 | audio_config.enable ^= 1; |
| 642 | eeconfig_update_audio(audio_config.raw); | 653 | eeconfig_update_audio(audio_config.raw); |
| 643 | if (audio_config.enable) { | 654 | if (audio_config.enable) { |
diff --git a/quantum/audio/audio_pwm.c b/quantum/audio/audio_pwm.c index 545aef6dd..d93ac4bb4 100644 --- a/quantum/audio/audio_pwm.c +++ b/quantum/audio/audio_pwm.c | |||
| @@ -29,6 +29,11 @@ | |||
| 29 | 29 | ||
| 30 | #define CPU_PRESCALER 8 | 30 | #define CPU_PRESCALER 8 |
| 31 | 31 | ||
| 32 | #ifndef STARTUP_SONG | ||
| 33 | # define STARTUP_SONG SONG(STARTUP_SOUND) | ||
| 34 | #endif | ||
| 35 | float startup_song[][2] = STARTUP_SONG; | ||
| 36 | |||
| 32 | // Timer Abstractions | 37 | // Timer Abstractions |
| 33 | 38 | ||
| 34 | // TIMSK3 - Timer/Counter #3 Interrupt Mask Register | 39 | // TIMSK3 - Timer/Counter #3 Interrupt Mask Register |
| @@ -155,6 +160,12 @@ void audio_init() { | |||
| 155 | audio_initialized = true; | 160 | audio_initialized = true; |
| 156 | } | 161 | } |
| 157 | 162 | ||
| 163 | void audio_startup() { | ||
| 164 | if (audio_config.enable) { | ||
| 165 | PLAY_SONG(startup_song); | ||
| 166 | } | ||
| 167 | } | ||
| 168 | |||
| 158 | void stop_all_notes() { | 169 | void stop_all_notes() { |
| 159 | if (!audio_initialized) { | 170 | if (!audio_initialized) { |
| 160 | audio_init(); | 171 | audio_init(); |
