mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 06:29:15 +00:00
Fix warnings in CMD-Preonic
The startup_sound is defined using MUSICAL_NOTEs, since non-constant initializer expressions are not allowed in C.
This commit is contained in:
parent
109ae2f1e8
commit
08b9eb26c5
1 changed files with 5 additions and 5 deletions
|
@ -212,10 +212,10 @@ const uint16_t PROGMEM fn_actions[] = {
|
||||||
|
|
||||||
#ifdef AUDIO_ENABLE
|
#ifdef AUDIO_ENABLE
|
||||||
float start_up[][2] = {
|
float start_up[][2] = {
|
||||||
{440.0*pow(2.0,(14)/12.0), 20},
|
MUSICAL_NOTE(_B5, 20),
|
||||||
{440.0*pow(2.0,(26)/12.0), 8},
|
MUSICAL_NOTE(_B6, 8),
|
||||||
{440.0*pow(2.0,(18)/12.0), 20},
|
MUSICAL_NOTE(_DS6, 20),
|
||||||
{440.0*pow(2.0,(26)/12.0), 8}
|
MUSICAL_NOTE(_B6, 8),
|
||||||
};
|
};
|
||||||
|
|
||||||
float tone_qwerty[][2] = SONG(QWERTY_SOUND);
|
float tone_qwerty[][2] = SONG(QWERTY_SOUND);
|
||||||
|
@ -323,7 +323,7 @@ void matrix_init_user(void) {
|
||||||
|
|
||||||
#ifdef AUDIO_ENABLE
|
#ifdef AUDIO_ENABLE
|
||||||
|
|
||||||
void play_goodbye_tone()
|
void play_goodbye_tone(void)
|
||||||
{
|
{
|
||||||
PLAY_NOTE_ARRAY(goodbye, false, 0);
|
PLAY_NOTE_ARRAY(goodbye, false, 0);
|
||||||
_delay_ms(150);
|
_delay_ms(150);
|
||||||
|
|
Loading…
Reference in a new issue