Correcting spkr init

This commit is contained in:
Adrien Bourmault 2019-05-07 15:43:16 +02:00
parent 1b33aa6b28
commit 050f795b39
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ void IoDoBeep(void)
// Worst possible way of waiting
// We need actual timers
ulong ticks = IoGetRtcTicks();
while (IoGetRtcTicks() < ticks + 2*1024);
while (IoGetRtcTicks() < ticks + 512);
IoQuietSpeaker();