* feat: new startup / reset chimes * Remove sound defines in default keymap * fix: check for startup/goodbye song definition * fix: move chimes definition to keyboard's post_config.h Co-authored-by: Drashna Jael're <drashna@live.com>
10 lines
259 B
C
10 lines
259 B
C
#ifdef AUDIO_ENABLE
|
|
#ifndef STARTUP_SONG
|
|
# define STARTUP_SONG SONG(E__NOTE(_DS5), E__NOTE(_D5), E__NOTE(_AS4), Q__NOTE(_F5))
|
|
#endif
|
|
|
|
#ifndef GOODBYE_SONG
|
|
# define GOODBYE_SONG SONG(E__NOTE(_D5), E__NOTE(_F5), E__NOTE(_C5), Q__NOTE(_AS4))
|
|
#endif
|
|
#endif
|