Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
webclient例程接收数据不全
发布于 2019-12-13 12:10:07 浏览:1234
订阅该版
使用的ec20+AT(v2.0.1)指令联网方式 在进行webclient(v2.1.0)的get试验的时候,发现每次接收数据只能接收到90%多样子。文件大小![QQ截图20191213120016.png](/uploads/201912/13/120035hg2kttmmg9gvk2pa.png)186584,每次接收只有182084字节。怀疑是AT receive timeout (6000)导致,但是又不知道什么原因。请高人指点{:2_27:}这个可能就是每次OTA只能到90%的原因! ```int webclient_get_comm(const char *uri_l) { char *uri = RT_NULL; struct webclient_session* session = RT_NULL; unsigned char *buffer = RT_NULL; int index, ret = 0; int bytes_read, resp_status; int content_length = -1; uri = web_strdup(uri_l); buffer = (unsigned char *) web_malloc(GET_RESP_BUFSZ); if (buffer == RT_NULL) { rt_kprintf("no memory for receive buffer.
"); ret = -RT_ENOMEM; goto __exit; } /* create webclient session and set header response size */ session = webclient_session_create(GET_HEADER_BUFSZ); if (session == RT_NULL) { ret = -RT_ENOMEM; goto __exit; } /* send GET request by default header */ if ((resp_status = webclient_get(session, uri)) != 200) { rt_kprintf("webclient GET request failed, response(%d) error.
", resp_status); ret = -RT_ERROR; goto __exit; } rt_kprintf("webclient get response data:
"); content_length = webclient_content_length_get(session); rt_kprintf("data content_length : %d
",content_length); int content_pos = 0; do { bytes_read = webclient_read(session, buffer, content_length - content_pos > GET_RESP_BUFSZ ? GET_RESP_BUFSZ : content_length - content_pos); if (bytes_read <= 0) { break; } content_pos += bytes_read; } while (content_pos < content_length); rt_kprintf("content_pos = %d
",content_pos); __exit: if (session) { webclient_close(session); } if (buffer) { web_free(buffer); } return ret; }```
查看更多
3
个回答
默认排序
按发布时间排序
tanc
2019-12-13
这家伙很懒,什么也没写!
使用wget历程来获取文件也是,每次都只能获取到刚好那么多长度的数据。[attach]12689[/attach] int webclient_get_file(const char* URI, const char* filename) { int fdd = -1, rc = WEBCLIENT_OK; size_t offset; int length, total_length = 0; unsigned char *ptr = RT_NULL; struct webclient_session* session = RT_NULL; int resp_status = 0; session = webclient_session_create(WEBCLIENT_HEADER_BUFSZ); if(session == RT_NULL) { rc = -WEBCLIENT_NOMEM; goto __exit; } if ((resp_status = webclient_get(session, URI)) != 200) { LOG_E("get file failed, wrong response: %d (-0x%X).", resp_status, resp_status); rc = -WEBCLIENT_ERROR; goto __exit; } // fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0); // if (fd < 0) // { // LOG_E("get file failed, open file(%s) error.", filename); // rc = -WEBCLIENT_ERROR; // goto __exit; // } ptr = (unsigned char *) web_malloc(WEBCLIENT_RESPONSE_BUFSZ); if (ptr == RT_NULL) { LOG_E("get file failed, no memory for response buffer."); rc = -WEBCLIENT_NOMEM; goto __exit; } if (session->content_length < 0) { while (1) { length = webclient_read(session, ptr, WEBCLIENT_RESPONSE_BUFSZ); if (length > 0) { // write(fd, ptr, length); total_length += length; LOG_RAW(">"); } else { break; } } } else { for (offset = 0; offset < (size_t) session->content_length;) { length = webclient_read(session, ptr, session->content_length - offset > WEBCLIENT_RESPONSE_BUFSZ ? WEBCLIENT_RESPONSE_BUFSZ : session->content_length - offset); if (length > 0) { // write(fd, ptr, length); total_length += length; LOG_RAW(">"); } else { break; } offset += length; } } if (total_length) { LOG_D("save %d bytes.", total_length); } __exit: // if (fd >= 0) // { // close(fd); // } if (session != RT_NULL) { webclient_close(session); } if (ptr != RT_NULL) { web_free(ptr); } return rc; }
tanc
2019-12-24
这家伙很懒,什么也没写!
结贴!原因已找到,模块供电问题!!!
小小李sunny
2020-02-23
这家伙很懒,什么也没写!
>结贴!原因已找到,模块供电问题!!! --- 我也是遇到这种情况,你的供电问题是什么情况呢?怎么解决的
撰写答案
登录
注册新账号
关注者
0
被浏览
1.2k
关于作者
tanc
这家伙很懒,什么也没写!
提问
16
回答
48
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
【1024】瑞萨 RA 系列 BSP 制作与适配最新版本的 Keil 、 RSC、固件,较新的 FSP
2
基于 RT-Thread 星火一号开发板的俄罗斯方块
3
RTThread studio 中添加 Micro_ROS 软件包有 Bug
4
【1024 RT-Thread与英飞凌(infineon)合作得板子PSOC 6 板子学习】
5
【1024】用HMI-Board 復刻 X-Track
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
ART-Pi
FinSH
USB
文件系统
DMA
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
rt-smart
FAL
ESP8266
WIZnet_W5500
I2C_IIC
ota在线升级
UART
cubemx
PWM
flash
packages_软件包
freemodbus
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
C++_cpp
at_device
ulog
本月问答贡献
出出啊
1516
个答案
342
次被采纳
小小李sunny
1440
个答案
289
次被采纳
张世争
793
个答案
171
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
1
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
4
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部