其他分享
首页 > 其他分享> > rtt中添加minIni组件的一些问题

rtt中添加minIni组件的一些问题

作者:互联网

问题一

在rtt studio软件中添加该组件后发现编译器目录中被屏蔽了,暂时没有找到原因

解决方法是将minini文件夹放到app文件夹中

问题二

ini文件只能读,不能写

minGlue.h头文件的ini_openwrite定义修改

#define ini_openwrite(filename,file)    ((*(file) = open((filename),O_WRONLY | O_TRUNC, 0)) >= 0)

改为

#define ini_openwrite(filename,file)    ((*(file) = open((filename),O_CREAT | O_WRONLY | O_TRUNC, 0)) >= 0)

 

注意事项:

读写ini文件时发现大小写必须一致,当不一致时读取好像是可以的,但写入就是发生混乱,将导致写入错误

标签:openwrite,minIni,filename,rtt,ini,file,组件,open
来源: https://www.cnblogs.com/arthurly/p/14511971.html