在线时间4 小时
UID4002216
注册时间2024-7-8
NXP金币119
TA的每日心情 | 郁闷 2024-7-12 09:20 |
---|
签到天数: 2 天 [LV.1]初来乍到
新手上路
- 积分
- 31
- 最后登录
- 2024-9-10
|
使用该例程驱动EC25模块过程中遇到问题:
1、发送AT指令给模块之后,接收到模块返回的数据不全,在执行下次发送之后,接收得到的数据包含上次指令EC25返回的数据。不知道是否有哪个参数可以改善这种情况。
2、我如何获取usb接收的数据的长度
对与历程的修改:
/*See the CDC specification page20*/
/*! @brief CDC class-specific code, Communications Interface Class Code*/
#define USB_HOST_CDC_COMMUNICATIONS_CLASS_CODE 0xffU//0x02
/*! @brief CDC class-specific code,Communications Class Subclass Codes*/
#define USB_HOST_CDC_SUBCLASS_ACM_CODE 0x0U//0x02U
/*No class specific protocol required. See the CDC specification page22*/
#define USB_HOST_CDC_PROTOCOL_CODE 0x00U
/*! @brief CDC class-specific code,Data Class Interface Codes*/
#define USB_HOST_CDC_DATA_CLASS_CODE 0xFFU//0x0AU
/* This field is unused for Data Class interfaces and should have a value of 00h.*/
#define USB_HOST_CDC_DATA_SUBCLASS_CODE 0x00U
/*No class-specific protocol required. See the CDC specification page22*/
#define USB_HOST_CDC_DATA_PROTOCOL_CODE 0x00U
在论坛发现有同样情况
|
|