diff options
Diffstat (limited to 'quantum/audio')
| -rw-r--r-- | quantum/audio/driver_chibios_pwm_hardware.c | 4 | ||||
| -rw-r--r-- | quantum/audio/song_list.h | 8 | 
2 files changed, 5 insertions, 7 deletions
| diff --git a/quantum/audio/driver_chibios_pwm_hardware.c b/quantum/audio/driver_chibios_pwm_hardware.c index 3c7d89b290..cd40019ee7 100644 --- a/quantum/audio/driver_chibios_pwm_hardware.c +++ b/quantum/audio/driver_chibios_pwm_hardware.c @@ -109,9 +109,9 @@ void audio_driver_initialize(void) {      // connect the AUDIO_PIN to the PWM hardware  #if defined(USE_GPIOV1)  // STM32F103C8 -    palSetLineMode(AUDIO_PIN, PAL_MODE_STM32_ALTERNATE_PUSHPULL); +    palSetLineMode(AUDIO_PIN, PAL_MODE_ALTERNATE_PUSHPULL);  #else  // GPIOv2 (or GPIOv3 for f4xx, which is the same/compatible at this command) -    palSetLineMode(AUDIO_PIN, PAL_STM32_MODE_ALTERNATE | PAL_STM32_ALTERNATE(AUDIO_PWM_PAL_MODE)); +    palSetLineMode(AUDIO_PIN, PAL_MODE_ALTERNATE(AUDIO_PWM_PAL_MODE));  #endif      gptStart(&AUDIO_STATE_TIMER, &gptCFG); diff --git a/quantum/audio/song_list.h b/quantum/audio/song_list.h index b54b397e1c..8e80a016aa 100644 --- a/quantum/audio/song_list.h +++ b/quantum/audio/song_list.h @@ -20,11 +20,9 @@  #include "musical_notes.h" -#if __GNUC__ > 5  // don't use for older gcc compilers since check isn't supported. -#    if __has_include("user_song_list.h") -#        include "user_song_list.h" -#    endif  // if file exists -#endif      // __GNUC__ +#if __has_include("user_song_list.h") +#    include "user_song_list.h" +#endif  // if file exists  #define NO_SOUND | 
