iR58/bk_aidk/projects/lock_lfvx/.svn/pristine/33/33cf32ab7b0ee831eefcb317b3217217ba0ee3a9.svn-base
2025-05-08 18:01:52 +08:00

23 lines
369 B
Plaintext
Executable File

#ifndef __AUDIO_PLAYER_CLIENT_H__
#define __AUDIO_PLAYER_CLIENT_H__
#ifdef __cplusplus
extern "C" {
#endif
typedef enum
{
VOICE_DINGDONG = 0,
VOICE_MAX_INDEX
} voice_index_t;
void audio_player_init(void);
void test_audio();
void audio_player_playvoice(voice_index_t index);
void stop_audio_player();
#ifdef __cplusplus
}
#endif
#endif