Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
网络学习营
【7天入门RTOS网络编程】代码搬运工 day1-2 作业1, 2, 3
发布于 2018-10-20 20:13:50 浏览:2196
订阅该版
**RTOS****网络编程课 作业****——****DAY1-2** **1.安装软件** 前提需求3个软件,env_released_1.0.0,tap-windows-9.21.2,VSCode-win32-x64-1.28.1一个rt-thread软件包 ![620,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/ee0738eb3a2b41dda2bd613a2f9ed897/clipboard.png) **2.初步调试** 1.进入xx t-thread t-thread-v3.1.0\bsp\qemu-vexpress-a9 文件夹 右键 进入env界面 ![443,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/54db4520c2b74a8db74d66623e3183b0/clipboard.png) 2.进入界面 输入 scons 编译工程,生成 rtthread.elf 配置文件;提示scons: done building targets编译成功 ![462,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/5d717dbddde04059b1031ea9870b9be6/clipboard.png) 3.menuconfig进入打开 文件系统的packages → miscellaneous packages → samples: kernel and components samples→a filesystem_samples package for rt-thread,打开所有的例程。 ![518,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/dc38fcee88d24af69c75884784127cbc/clipboard.png) 4.pkgs --update 更新 menuconfig的工程。 ![472,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/220166616fb642ea8c99a53db3b6b5f8/clipboard.png) 4.scons编译一下工程,qemu进入模拟器,运行一下例程。 **作业2:**文本数据替换:1.txt 里面有文本信息 123456789,将 123 替换为 abc. 1.创建一个1.txt, 2.读取1.txt的内容,放到缓存中,缓存中修信息 3.将缓存重新写到1.txt 新建 day1_2_2.c文件,代码如下:```/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * */ /* * 程序清单:更改名称 * * 程序会创建一个操作文件的函数并导出到msh命令列表 * 在函数中调用 rename()函数 * int rename(const char *oldpath, const char *newpath); * rename()会将参数oldpath 所指定的文件名称改为参数newpath * 所指的文件名称。若newpath 所指定的文件已经存在,则该文件将会被覆盖。 * */ #include
#include
/* 当需要使用文件操作时,需要包含这个头文件 */ static void day1_2_2(void) { int fd, size; char s[] = "123456789",buffer[80];; rt_kprintf("%s => %s ", "/1.txt", "/1.txt"); /* 打开/1.txt 作写入,如果该文件不存在则建立该文件*/ fd = open("/1.txt", O_WRONLY | O_CREAT); if (fd >= 0) { // write(fd, s, sizeof(s)); close(fd); } /* 打开/1.txt 准备作读取动作*/ fd = open("/1.txt", O_RDONLY); if(fd >= 0) { size = read(fd, buffer, sizeof(buffer)); close(fd); } rt_kprintf("1.txt content is: %s",buffer); if(buffer[0] = '1' && buffer[1] == '2' && buffer[2] == '3') { buffer[0] = 'a'; buffer[1] = 'b'; buffer[2] = 'c'; /* 打开/1.txt 准备作读取动作*/ fd = open("/1.txt", O_WRONLY); if(fd > 0) { /* /1.txt 准备作写入动作*/ size = write(fd, buffer, size); close(fd); } } } /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(day1_2_2, Text data replacement); ``` 运行结果: 1.ls查看有没有1.txt ```msh />ls Directory /: txt.txt 5 dir_test
text.txt 6 text1.txt 22 2.txt 2 3.txt 3 hello.txt 11 t.txt 10```2.echo "123456789" 1.txt 创建 1.txt文件,内容为:123456789 3.cat 命令显示 123456789 ```
msh />cat 1.txt
123456789msh />
```4. 运行 day1_2_2命令,运行修改函数;运行 cat 1.txt命令 显示:abc456789 **作业3:**1. 文件匹配: 有一系列文件如:1.txt, 12.txt, 123.txt,从中找出1.txt,并将文件内容输出出来。 本题解析基于opendir_sample.c和readdir_sample.c两个文件完成 1.在opendir_sample.c,创建 dir_test目录,在该目录下添加三个文件,1.txt,2.txt,3.txt 内容分别是22,333, 111。代码如下:```/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * */ /* * 程序清单:打开目录 * * 程序会创建一个操作文件的函数并导出到msh命令列表 * 在函数中调用 opendir() 函数 * DIR* opendir(const char* name); * opendir()函数用来打开一个目录,参数name 为目录路径名。 * 若读取目录成功,返回该目录结构,若读取目录失败,返回RT_NULL。 */ #include
#include
/* 当需要使用文件操作时,需要包含这个头文件 */ static void opendir_sample(void) { DIR *dirp; int fd, size; char s[] = "111"; /* 打开/dir_test 目录*/ dirp = opendir("/dir_test"); if (dirp == RT_NULL) { rt_kprintf("open directory error!
"); } else { rt_kprintf("open directory OK!
"); /* 在这儿进行读取目录相关操作*/ /* ...... */ fd = open("/dir_test/2.txt", O_WRONLY | O_CREAT); if (fd >= 0) { write(fd, "22", 2); close(fd); } fd = open("/dir_test/3.txt", O_WRONLY | O_CREAT); if (fd >= 0) { write(fd, "333", 3); close(fd); } fd = open("/dir_test/1.txt", O_WRONLY | O_CREAT); if (fd >= 0) { //write(fd, s, sizeof(s)); write(fd, "111", sizeof("111")); close(fd); } /* 关闭目录 */ closedir(dirp); } } /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(opendir_sample, open dir sample);
``` 2.readdir_sample.c 读取目录,读取改目录下的文件名,判断出1.txt。```/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * */ /* * 程序清单:读取目录 * * 程序会创建一个操作文件的函数并导出到msh命令列表 * 在函数中调用 readdir() 函数 * struct dirent* readdir(DIR *d); * readdir()函数用来读取目录,参数d 为目录路径名。 * 返回值为读到的目录项结构,如果返回值为RT_NULL,则表示已经读到目录尾; * 此外,每读取一次目录,目录流的指针位置将自动往后递推1 个位置。 */ #include
#include
/* 当需要使用文件操作时,需要包含这个头文件 */ #include "string.h" static void readdir_sample(void) { DIR *dirp; struct dirent *d; int fd, size; char buffer[80]; /* 打开/dir_test 目录*/ dirp = opendir("/dir_test"); if (dirp == RT_NULL) { rt_kprintf("open directory error!
"); } else { /* 读取目录*/ while ((d = readdir(dirp)) != RT_NULL) { rt_kprintf("found %s
", d->d_name); /* 判断 文件名 是否相等 */ if(strcmp(d->d_name, "1.txt") == 0) { /* 打开/1.txt 准备作读取动作*/ fd = open("/dir_test/1.txt", O_RDONLY); if(fd >= 0) { size = read(fd, buffer, sizeof(buffer)); close(fd); rt_kprintf("dir_test/1.txt content is: %s",buffer); } } } /* 关闭目录 */ closedir(dirp); } } /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(readdir_sample, readdir sample);
``` 3.打开读取1.txt的信息打印出来。 ![341,0](file:///C:/Users/Administrator/AppData/Local/YNote/data/1275548347@163.com/ddecade1a3774aa292ebf0b998986a99/clipboard.png) msh />readdir_sample found 2.txt found 3.txt found 1.txt dir_test/1.txt content is: 111msh /> msh /> msh />cat di msh />cat dir_test/1.txt 111msh /> 下载附件 [RTOS网络编程课 作业——DAY1-2.pdf](https://oss-club.rt-thread.org/uploads/201810/20/201346oih69kiemfoi48dk.attach)
查看更多
0
个回答
默认排序
按发布时间排序
暂无答案,快来添加答案吧
撰写答案
登录
注册新账号
关注者
0
被浏览
2.2k
关于作者
最初的时光
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
【LWIP学习营】第一关开发环境搭建
2
LWIP学习营第一周入门移植问题汇总贴
3
【LWIP学习营】f407+lan8720A小结
4
【LwIP学习营】【第一周】仅零散记录,无主题
5
【LWIP学习营】正点原子探索者F407+LAN8720第一周小结
6
【LwIP学习营】【第一周】网络通信基础及实现TCP 聊天客户端
7
【LwIP学习营】【第一周】LWIP移植
8
【LwIP学习营】【第一周】LWIP移植
9
【LwIP学习营】【第一周】开发板适配
10
【LwIP学习营】【第一周】环境搭建和配置验证
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
MicroPython
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
15
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部