Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

talk.c add busy loop to talk_spell

talk spell can lose the remainder of the words on longer sequences

Change-Id: I5f8f0f42d780ea9d1f00d99ff32746be34c27745

+3
+3
apps/talk.c
··· 776 776 talk_id(VOICE_PAUSE, true); 777 777 else if (c == '/') 778 778 talk_id(VOICE_CHAR_SLASH, true); 779 + 780 + while (QUEUE_LEVEL == QUEUE_SIZE - 1) /* queue full - busy loop */ 781 + yield(); 779 782 } 780 783 return 0; 781 784 }