2025-04-11 09:40:32 +08:00

13 lines
135 B
C

#ifndef __TTS_H__
#define __TTS_H__
#include <stdint.h>
int32_t ttsInit(void);
int32_t ttsPlay(BOOL toneFlag,char *text);
#endif