12 lines
177 B
C
12 lines
177 B
C
#ifndef __AUDIO_PLAYER_H
|
|
#define __AUDIO_PLAYER_H
|
|
|
|
#include <stdbool.h>
|
|
#include "audio_hal.h"
|
|
#include "audio_mp3.h"
|
|
//#include "audio_wav.h"
|
|
|
|
void audio_player(void);
|
|
|
|
#endif
|