5d79f88918
2. 进一步修改了语音识别,关闭了关键词唤醒功能,只保留了指令识别功能 3. 构建了业务层的基本框架(增加了底层驱动对于的C++兼容),业务代码采用C++编写,启用了RTTI(运行时类型识别)
17 lines
185 B
C
17 lines
185 B
C
//
|
|
// Created by misaki on 2025/8/25.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void gif_display_test(void);
|
|
|
|
void gif_display_test_1(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |