This commit is contained in:
2026-02-26 11:53:52 +01:00
parent 402781f49c
commit d48bc33530
7 changed files with 128 additions and 281 deletions

View File

@@ -24,12 +24,19 @@ int audio_init(void);
/**
* @brief Plays an audio file from the filesystem
*
* @param filename The path to the audio file to play
*/
void audio_play(void);
void audio_play(const char *filename)
/**
* @brief Stops the currently playing audio
*/
void audio_stop(void);
/**
* @brief Signals the audio thread that the system is fully booted
*/
void audio_system_ready(void);
#endif // AUDIO_H