xshell的ymodem发送数据中有文件大小数据,仔细对比iot board例程22和ry_sy.c,问题在
cctx->flen = atoi((const char *)buf + rt_strnlen((const char *)buf, len - 1));
这一行,文件名后面有一个’ ’,应该指向后面一个字节的,改为
cctx->flen = atoi(1 + (const char *)buf + rt_strnlen((const char *)buf, len - 1));
xshell的ymodem发送数据中有文件大小数据,仔细对比iot board例程22和ry_sy.c,问题在
cctx->flen = atoi((const char *)buf + rt_strnlen((const char *)buf, len - 1));
这一行,文件名后面有一个’ ’,应该指向后面一个字节的,改为
cctx->flen = atoi(1 + (const char *)buf + rt_strnlen((const char *)buf, len - 1));
举报