increase delay in sound test

This commit is contained in:
Mariano Dominguez 2023-01-06 11:23:33 -08:00
parent 196962adac
commit bf9fb6dcdb
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ int main(void)
int i=0;
printf("playing sound \n");
sound(1,121,10,15);
for(i=0;i<90;i++);
for(i=0;i<9000;i++);
sound(1,0,0,0);
return 0;
}