Loading

摘要: 文件:tobigchar.c mian.c tobigchar.h 静态库: 生成目标文件: gcc -c -o tobigchar.o tobigchar.c 生成静态库: ar rcs libtobigchar.a tobigchar.o 编译程序: gcc -I./ -L./ main.c - 阅读全文
posted @ 2019-01-21 16:06 砚车干 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 使用 secure CRT连接开发板,可视化操作 连接成功 设置临时ip ubuntu 要跟 开发板同一网段: ip前三位相同 代码:sudo service tftpd-hpa restart 代码:tftp -g -r lcd 192.168.3.190 阅读全文
posted @ 2019-01-21 13:51 砚车干 阅读(2995) 评论(0) 推荐(0) 编辑
摘要: 系统IO:Linux系统提供给应用程序操作文件的接口 Everything is a file ,in Unix 在Unix/Linux下,万物皆文件 打开文件函数原型: #include<sys/types.h> #include<sys/stat.h> #include<fcntl.h> int 阅读全文
posted @ 2019-01-21 07:48 砚车干 阅读(242) 评论(0) 推荐(0) 编辑