Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
UART
串口每隔5s 接收24个数据的正确的处理方式应该怎么操作呢?
发布于 2019-01-18 22:47:41 浏览:1921
订阅该版
* 本帖最后由 小住住 于 2019-1-18 22:49 编辑 * 按如下的方式处理,会出现错位的情况,那么问题来了这种很经典的问题的处理方式如何进行呢? ``` void uart_thread_entry(void* parameter) { rt_uint8_t uart_rx_data[24]; rt_uint8_t uart_reply_data[2]; rt_uint8_t receive_byte_count=0; protocol_485_Delay_board_init(); rt_pin_mode(DRIVER_485_TXH_RXL,PIN_MODE_OUTPUT); rt_pin_write(DRIVER_485_TXH_RXL, PIN_HIGH); /* ???? */ if (uart_open("uart2") != RT_EOK) { rt_kprintf("uart open error.
"); while (1) { rt_thread_delay(10); } } while (1) { rt_uint8_t uart_rx_first; /* ??? */ uart_rx_first= uart_getchar();//uart_rx_data[receive_byte_count] /* ?? */ // uart_rx_data* = uart_rx_data* + 1; if ((uart_rx_first == 0x81) || (uart_rx_first == 0x82) || (uart_rx_first == 0x83)) { uart_rx_data[0] = uart_rx_first ; for(receive_byte_count = 1;receive_byte_count < 24 ; receive_byte_count++) { uart_rx_data[receive_byte_count] = uart_getchar(); } rt_pin_write(DRIVER_485_TXH_RXL, PIN_HIGH); // uart_rx_data[0]=0x11; // uart_putstring(uart_rx_data); //if(receive_byte_count > 23) //{ if (protocol_485_parse_data(uart_rx_data,receive_byte_count)) { rt_pin_write(DRIVER_485_TXH_RXL, PIN_HIGH); uart_reply_data[0] = uart_rx_data[0] + 5; uart_reply_data[1] = 0xAA; uart_putstring(uart_reply_data); } receive_byte_count = 0; rt_memset(uart_rx_data,0,sizeof(uart_rx_data)); rt_pin_write(DRIVER_485_TXH_RXL, PIN_LOW); //} } else { receive_byte_count = 0; }``` ``` tid2 = rt_thread_create("test", uart_thread_entry, RT_NULL, 512, 3, 10); if (tid2 != RT_NULL) rt_thread_startup(tid2); ``` ```/* * File : app_uart.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes *2017-12-15 DQL the first version */ #include
#include
#include "app_uart.h" /* ´®¿Ú½ÓÊÕʼþ±êÖ¾ */ #define UART_RX_EVENT (1 << 0) /* ʼþ¿ØÖÆ¿é */ static struct rt_event event; /* ´®¿ÚÉ豸¾ä±ú */ static rt_device_t uart_device = RT_NULL; /* »Øµ÷º¯Êý */ static rt_err_t uart_intput(rt_device_t dev, rt_size_t size) { /* ·¢ËÍʼþ */ rt_event_send(&event, UART_RX_EVENT); return RT_EOK; } rt_uint8_t uart_getchar(void) { rt_uint32_t e; rt_uint8_t ch; /* ¶ÁÈ¡1×Ö½ÚÊý¾Ý */ while (rt_device_read(uart_device, 0, &ch, 1) != 1) { /* ½ÓÊÕʼþ */ rt_event_recv(&event, UART_RX_EVENT,RT_EVENT_FLAG_AND | RT_EVENT_FLAG_CLEAR,RT_WAITING_FOREVER, &e); } return ch; } void uart_putchar(const rt_uint8_t c) { rt_size_t len = 0; rt_uint32_t timeout = 0; do { len = rt_device_write(uart_device, 0, &c, 1); timeout++; } while (len != 1 && timeout < 500); } void uart_putstring(const rt_uint8_t *s) { while(*s) { uart_putchar(*s++); } } rt_err_t uart_open(const char *name) { rt_err_t res; /* ²éÕÒϵͳÖеĴ®¿ÚÉ豸 */ uart_device = rt_device_find(name); /* ²éÕÒµ½É豸ºó½«Æä´ò¿ª */ if (uart_device != RT_NULL) { res = rt_device_set_rx_indicate(uart_device, uart_intput); /* ¼ì²é·µ»ØÖµ */ if (res != RT_EOK) { rt_kprintf("set %s rx indicate error.%d
",name,res); return -RT_ERROR; } /* ´ò¿ªÉ豸£¬ÒԿɶÁд¡¢ÖжϷ½Ê½ */ res = rt_device_open(uart_device, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_INT_RX ); /* ¼ì²é·µ»ØÖµ */ if (res != RT_EOK) { rt_kprintf("open %s device error.%d
",name,res); return -RT_ERROR; } } else { rt_kprintf("can't find %s device.
",name); return -RT_ERROR; } /* ³õʼ»¯Ê¼þ¶ÔÏó */ rt_event_init(&event, "event", RT_IPC_FLAG_FIFO); return RT_EOK; } ``` ![111.png](https://oss-club.rt-thread.org/uploads/201901/18/224852gm1mz5q9dy5cm1by.png) ![111.png](https://oss-club.rt-thread.org/uploads/201901/18/224919qppluk4uul4iqi45.png)
查看更多
8
个回答
默认排序
按发布时间排序
yaomo718
2019-01-19
这家伙很懒,什么也没写!
可以使用空闲中断接收然后一起处理。
小住住
认证专家
2019-01-19
这家伙很懒,什么也没写!
>可以使用空闲中断接收然后一起处理。 --- 有参考的例子吗?
enmonster
2019-01-20
这家伙很懒,什么也没写!
可以参考rtt串口驱动的接收数据的实现方式
liu2guang
认证专家
2019-01-20
这家伙很懒,什么也没写!
可以参考 [https://github.com/rtpkgs/dwin/blob/master/dwin/basic/dwin_trans.c](https://github.com/rtpkgs/dwin/blob/master/dwin/basic/dwin_trans.c) 中实现的方式, 这里采用的是dwin屏幕, 主要是利用sem信号量与串口接收回调函数配合接受数据与解析数据, 希望所帮助!
misonyo
2019-01-21
这家伙很懒,什么也没写!
串口接收回调函数可以获取接收到的数据长度,你判断长度为24的时候发个信号量通知处理线程就ok了
小住住
认证专家
2019-01-21
这家伙很懒,什么也没写!
>可以参考 https://github.com/rtpkgs/dwin/blob/master/dwin/basic/dwin_trans.c 中实现的方式, 这里采用的 ... --- rt_device_read(watch.serial, (-1), &ch, 1) != 1 rt_device_write(watch.serial, (-1), &ch, 1) != 1 为什么偏移是-1?跟零的效果是一样的?
小住住
认证专家
2019-01-21
这家伙很懒,什么也没写!
[i=s] 本帖最后由 小住住 于 2019-1-21 16:19 编辑 [/i] >rt_device_read(watch.serial, (-1), &ch, 1) != 1 >rt_device_write(watch.serial, (-1), &ch, 1) != ... --- 官方说:一样的,这个参数串口没有做处理。这个参数是块设备才有用的,字符设备只能顺序读取, 所以偏移量没啥用对于串口,-1 是确保显眼,表示与位置无关
小住住
认证专家
2019-01-22
这家伙很懒,什么也没写!
>可以参考 https://github.com/rtpkgs/dwin/blob/master/dwin/basic/dwin_trans.c 中实现的方式, 这里采用的 ... --- 通过消息队列,异步实现串口数据的接收,很不错,我也改成这样。
撰写答案
登录
注册新账号
关注者
0
被浏览
1.9k
关于作者
小住住
这家伙很懒,什么也没写!
提问
129
回答
126
被采纳
2
关注TA
发私信
相关问题
1
rt thread 2.0.2 usart 接收缓存问题
2
关于STM32串口通信的问题
3
STM32F1+RTT串口接收终端数据丢失问题
4
UART TX丢数据?
5
RTT打开串口的时候如何自定义波特率呢?
6
STM32F4的USART数据接收问题
7
串口1234使用问题
8
串口接收回调函数
9
LPC18xx UART问题讨论
10
x1000串口配置的失败问题
推荐文章
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
使用RC522软件包驱动FM1722
2
常量数据类型和表达式陷阱分享
3
进行i2c驱动移植的经验总结
4
在VSCode中使用clang-format
5
我该如何使用这个微雪的WIFI400 WIFI-LPB-100在rtt里或者我该怎样为它开发驱动
热门标签
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
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
809
个答案
175
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
3
篇文章
5
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部