Linux
Abbott
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
嵌入式的日常
给自己的忠告:不是计算机或者相关专业科班出身的人千万不要深入学嵌入式硬件部分!原创 2021-01-15 21:59:35 · 223 阅读 · 1 评论 -
树莓派的日常——模拟蓝牙游戏手柄支持NFC
前言仅供学习开源项目https://github.com/mart1nro/joycontrol.git准备树莓派3b及以上(应该是有蓝牙的Linux设备都可以)系统下Python 版本是 3.6 或更高输入查看 Python 版本:python3 --version逐行输入命令(注意第3行末尾有个点) git clone https://github.com/mart1nro/joycontrol.git JoyControl cd JoyControl && g原创 2021-01-09 14:56:18 · 4088 阅读 · 0 评论 -
Linux的日常——读写改文本
感觉像是写施工日志int main(){ int fd; fd = open("./file2",O_RDWR); //描述见上; if(fd == -1) { printf("file2文件不存在\n"); } fd = open("./file2",O_RDWR|O_CREAT,0764); printf("fd=%d \n",fd); char* buf= "wohenshuai"; write(fd,buf,strlen(buf)); int n_write = wr原创 2020-11-18 22:49:46 · 177 阅读 · 0 评论
分享