21 lines
468 B
C
21 lines
468 B
C
#ifndef __SYN7318_H
|
|
#define __SYN7318_H
|
|
#include "stm32f4xx.h"
|
|
#include "sys.h"
|
|
|
|
#define SYN7318RESET PBout(5)
|
|
|
|
void SYN7318_Init(void);
|
|
void SYN_TTS(char *Pst);
|
|
void SYN7318_Test(void); // 开启语音测试
|
|
void SYN_7318_One_test(uint8_t mode,uint8_t num); // mode 模式测试 1 随机指令 0 指定指令
|
|
void Yu_Yin_Asr(void); // 语音识别处理函数
|
|
|
|
uint8_t SYN7318_Extern(void); // 语音识别
|
|
|
|
void Voice_Data_Zigbee(uint8_t Sec);//向自动化评分系统回传识别结果
|
|
|
|
|
|
#endif
|
|
|