-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
air001 在使用arduino 中使用Serial接收数据不完整 #96
Comments
看到有别的信息,说4M主频不支持 115200 ,改成19200 发现数据接收好像是对了,但+++++还是无效,发6个++++++进入了判断,好像第一个字节有什么东西?或者结尾有不一样的东西? |
@chenxuuu #94 是不是和我这个是同样的问题,您下载我最新的上传的那个代码包复现一下,不要着急关闭issue,芯片的频率已经设成 48MHZ,用 LL 库仍然可以重现。 |
参考#50 |
@chenxuuu 9600波特率下也可以复现的,其它都能输出,就0xAA不行,是不是有什么特殊用途了? unsigned char test[] = {0x55, 0x00, 0x44, 0x00, 0x07, 0x72, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x32, 0xAA};
// 都能正确输出
0x55, 0x00, 0x44, 0x00, 0x07, 0x72, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x32 |
0xaa可以显示 |
您用我这个代码跑下看看,下载压缩包里。 |
@chenxuuu NND 居然是vscode的arduino插件问题,用llcom能收到正确的数据,不好意思! |
感谢,我尝试调整一下使用的主频,我是用的默认4M主频的,换成24M的试试,是不是就能正常了 |
换个正常点能看见不可见字符的串口工具吧,比如llcom |
哈哈,是回车换行啊?但不对啊,奇怪了,用ESP32就没这些东西的,代码也正常比对,但AIR001就不执行的?不理解,我也是个三脚猫,画瓢可以,找问题不在行啊! |
需要看原始的二进制数据
…---原始邮件---
发件人: ***@***.***>
发送时间: 2024年1月3日(周三) 上午10:43
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [Air-duino/Arduino-AirMCU] air001 在使用arduino 中使用Serial接收数据不完整 (Issue #96)
哈哈,是回车换行啊?但不对啊,奇怪了,用ESP32就没这些东西的,代码也正常比对,但AIR001就不执行的?不理解,我也是个三脚猫,画瓢可以,找问题不在行啊!
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
描述一下这个bug / Describe the bug
我做了一个测试收到数据进行判断,然后放到需要的地方去,结果发现我发了五个+ “+++++ 。结果显示只收到三个+++。
我截图了我的代码,和反馈效果?我认为这是个BUG ,源代码我在ESP32上测试是正常的。但搬到Air001上就反应异样了。
复现步骤 / To Reproduce
代码片段:
Serial.begin(115200); //uart1的初始化,
uint8_t RxFlg=0;
uint8_t RxToBuffer( char *Cmdbuf, uint8_t *Userbuf)
{
size_t len=0;
//check for data from the Serial
if(Serial.available())
{
}
如果正常,应该是什么样 / Expected behavior
输出 +++++ ,正常应该Serial.write("\n\rIn ATCmd\n\r"); 但目前返回Serial.write( Userbuf,len); 并且显示只有+++。
使用串口
截图 / Screenshots
日志 / Logs
接收的是数组很乱,
发送+++++ , 接收到+++
发送AT+EXAT ,接收到AT+AT
发送AT+TEST, 接收到AT+ST
发送AT+CONFIG,接收到ATCNFI
发送AT+CONFIG=3000,500,11,90,接收到AT+NFI3005001,9
系统 / System
win10
PACK包版本 / Version
0.6.2
验证
The text was updated successfully, but these errors were encountered: