fix: adds slight delay before playing startup song

This commit is contained in:
Florian Didron
2022-06-01 16:07:31 +09:00
parent 3e44377af0
commit f6df4a3223

View File

@@ -146,6 +146,7 @@ void audio_init() {
void audio_startup(void) {
if (audio_config.enable) {
wait_ms(100);// Small wait time required on some boards to properly play the startup song.
PLAY_SONG(startup_song);
}