Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
CDC
vcom
RT-Thread 4.0.5 CDC 接收问题
发布于 2022-07-19 19:00:26 浏览:700
订阅该版
`rt-thread\components\drivers\usb\usbdevice\class\cdc_vcom.c`在使用Serial v1时有两个问题 1、 接收数据和写缓存顺序反了 该文件335行开始 ```c /* receive data from USB VCOM */ level = rt_hw_interrupt_disable(); rt_ringbuffer_put(&data->rx_ringbuffer, data->ep_out->buffer, size); rt_hw_interrupt_enable(level); /* notify receive data */ rt_hw_serial_isr(&data->serial,RT_SERIAL_EVENT_RX_IND); ``` 这里先写缓存,后接收数据,导致接收数据为空。 2、 没有把缓存地址给`serial.serial_rx` 该文件497行开始 ```c data = (struct vcom*)func->user_data; data->ep_out->buffer = rt_malloc(CDC_RX_BUFSIZE); RT_ASSERT(data->ep_out->buffer != RT_NULL); ``` 这里分配了缓存,但是`rt_hw_serial_isr()`使用的是`serial.serial_rx`,因此导致了`rx_fifo == NULL`的断言错误。 而在使用Serial v2时,在335行处并没有实际读入数据,导致读入无响应。故修改如下: ```c #ifdef RT_USING_SERIAL_V1 /* notify receive data */ rt_hw_serial_isr(&data->serial,RT_SERIAL_EVENT_RX_IND); #endif #ifdef RT_USING_SERIAL_V2 int ch = -1; int put_index = 0; while (1) { ch = data->serial.ops->getc(&data->serial); if (ch == -1) break; /* disable interrupt */ level = rt_hw_interrupt_disable(); data->ep_out->buffer[put_index++] = ch; /* enable interrupt */ rt_hw_interrupt_enable(level); if (put_index >= data->serial.config.rx_bufsz) break; } #endif level = rt_hw_interrupt_disable(); /* receive data from USB VCOM */ rt_ringbuffer_put(&data->rx_ringbuffer, data->ep_out->buffer, size); rt_hw_interrupt_enable(level); #ifdef RT_USING_SERIAL_V2 /* notify receive data */ rt_hw_serial_isr(&data->serial,RT_SERIAL_EVENT_RX_IND); #endif ``` 497行处添加赋值 ```c data = (struct vcom*)func->user_data; data->ep_out->buffer = rt_malloc(CDC_RX_BUFSIZE); RT_ASSERT(data->ep_out->buffer != RT_NULL); #if defined(RT_USING_SERIAL_V1) data->serial.serial_rx = data->ep_out->buffer; #elif defined(RT_USING_SERIAL_V2) data->serial.serial_rx = &data->rx_ringbuffer; //data->serial.serial_tx = &data->tx_ringbuffer; #endif ``` 另外在使用Serial v2时,cdc会在接收数据时卡死,发现是在`vcom_tx_thread_entry()`函数结尾完美避开所有条件,没有执行`rt_hw_serial_isr(&data->serial,RT_SERIAL_EVENT_TX_DONE);` 使用的芯片是STM32H743VIH6
查看更多
0
个回答
默认排序
按发布时间排序
暂无答案,快来添加答案吧
撰写答案
登录
注册新账号
关注者
0
被浏览
700
关于作者
WindnBike
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
STM32H743 USBhost+cdc有没有大神会的,有偿求助啊。
2
usb设备cdc配置框架理解问题
3
STM32 USB Host驱动 CDC ECM
4
请问大家有没有遇到过USB识别很慢的情况
5
STM32 USB CDC驱动4G模块 开发进行中...
6
关于usbd设备的使用问题
7
RTT USB iManufacturer iProduct如何修改
8
CDC虚拟串口rxbuffer 大小
9
win7 64bit 系统的 USB CDC 驱动问题
10
请教下rtt有些没有实现双usb虚拟串口的实例
推荐文章
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
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
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
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部