From f6df4a322307f41b4e0107a15f6a46ce1a63e88f Mon Sep 17 00:00:00 2001 From: Florian Didron <0x6664@hey.com> Date: Wed, 1 Jun 2022 16:07:31 +0900 Subject: [PATCH] fix: adds slight delay before playing startup song --- quantum/audio/audio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c index c6523b908c..1e94f6529c 100644 --- a/quantum/audio/audio.c +++ b/quantum/audio/audio.c @@ -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); }