11 lines
221 B
C
11 lines
221 B
C
#ifndef __AUDIO_WAV_H
|
|
#define __AUDIO_WAV_H
|
|
|
|
#include "audio_hal.h"
|
|
|
|
#define AUDIO_WAV_FILE_BUFFER_SIZE 4608
|
|
|
|
audio_hal_result_t audio_wav_play(const char* file_name, audio_hal_result_t (*playing_routine)(void));
|
|
|
|
#endif
|