https://gitee.com/zkaijing/haier_8910dm_cat1?_from=gitee_search
无意中发现这个更像原厂SDK,组件,底层驱动,第三方都有,编译下载到合宙724UG模块中发现不能附着网络,求高手指导。
离线
离线
app_start.c添加代码,否则host口无调试输出
srvUsbInit();
srvPmRun();
#ifdef CONFIG_HAIER_APP
extern void haier_appimg_enter(void);
haier_appimg_enter();
#endif
//app_start.c添加此段代码,否则host口无调试输出
drvDebugPortMode_t dhost_mode = {
.protocol = DRV_DEBUG_PROTOCOL_HOST,
.trace_enable = true,
.cmd_enable = true,
.bs_enable = true,
};
drvDebugPort_t *dhost_port = drvDhostCreate(dhost_mode);
drvHostCmdEngineCreate(dhost_port);
//app_start.c添加此段代码,否则host口无调试输出
// wait a while for PM source created
osiThreadSleep(10);
osiPmStart();
最近编辑记录 TivonLiu (2020-12-09 16:40:22)
离线
https://gitee.com/chenxiahuaxu/RDA8910_CSDK
在这个最原始版本的TOOL中有,研发用下载工具
最近编辑记录 TivonLiu (2020-12-09 16:50:12)
离线
离线