13 lines
135 B
C
Raw Normal View History

2025-04-10 17:31:33 +08:00
#ifndef __TTS_H__
#define __TTS_H__
#include <stdint.h>
int32_t ttsInit(void);
int32_t ttsPlay(BOOL toneFlag,char *text);
#endif