Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
UART
潘多拉开发板子
发布于 2019-06-01 11:11:47 浏览:1270
订阅该版
正点原子潘多拉开发板上面除了串口1,还有串口3,如下图所示 ![QQ浏览器截图20190601110638.png](/uploads/201906/01/110752bfaz1tbibgz1coti.png) 然后我再使用串口3,用蓝牙接在串口3上面,用手机给串口3发数据,可是结果不理想,应该是串口3没有收到数据。 ```#include
/* UART接收消息结构*/ struct rx_msg { rt_device_t dev; rt_size_t size; }; /* 消息队列控制块 */ static struct rt_messagequeue mq; /* 消息队列中用到的放置消息的内存池 */ /* 数据到达回调函数*/ rt_err_t uart_input(rt_device_t dev, rt_size_t size) { struct rx_msg msg; int result; char buf[] = "this is message No.x"; msg.dev = dev; msg.size = size; /* 发送消息到消息队列中*/ rt_kprintf("Receive From :%s
",dev->parent.name); /* 发送消息到消息队列中 */ result = rt_mq_send(&mq, &msg, sizeof(msg)); if ( result == -RT_EFULL) { /* 消息队列满, 延迟1s时间 */ rt_kprintf("message queue full, delay 1s
"); rt_thread_delay(1000); } return result; } void device_thread_entry(void* parameter) { struct rx_msg msg; int count = 0; rt_device_t device, write_device; rt_err_t result = RT_EOK; static char uart_rx_buffer[64]; /* 查找系统中的串口1设备 */ device = rt_device_find("uart1"); if (device!= RT_NULL) { /* 设置回调函数及打开设备*/ rt_device_set_rx_indicate(device, uart_input); rt_device_open(device, RT_DEVICE_OFLAG_RDWR|RT_DEVICE_FLAG_INT_RX); } /* 设置写设备为uart1设备 */ write_device = device; /* 查找系统中的串口3设备 */ device= rt_device_find("uart3"); if (device!= RT_NULL) { /* 设置回调函数及打开设备*/ rt_device_set_rx_indicate(device, uart_input); rt_device_open(device, RT_DEVICE_OFLAG_RDWR|RT_DEVICE_FLAG_INT_RX); } while (1) { /* 从消息队列中读取消息*/ rt_memset(&msg, 0, sizeof(msg)); result = rt_mq_recv(&mq, &msg, sizeof(msg), 50); if (result == -RT_ETIMEOUT) { /* 接收超时*/ rt_kprintf("timeout count:%d
", ++count); } /* 从消息队列中接收消息 */ if (result == RT_EOK) { rt_uint32_t rx_length; rx_length = (sizeof(uart_rx_buffer) - 1) > msg.size ? msg.size : sizeof(uart_rx_buffer) - 1; /* 读取消息*/ rx_length = rt_device_read(msg.dev, 0, &uart_rx_buffer[0], rx_length); uart_rx_buffer[rx_length] = '\0'; rt_kprintf("Receive data:"); /* 写到写设备中*/ if (write_device != RT_NULL) rt_device_write(write_device, 0, &uart_rx_buffer[0], rx_length); rt_kprintf("
"); } } } int main() { static char msg_pool[2048]; /* 初始化消息队列 */ rt_mq_init(&mq, "mqt", &msg_pool[0], /* 内存池指向msg pool */ 128 - sizeof(void*), /* 每个消息的大小是 128 - void* */ sizeof(msg_pool), /* 内存池的大小是msg pool的大小 */ RT_IPC_FLAG_FIFO); /* 如果有多个线程等待,按照先来先得到的方法分配消息 */ /* 创建devt线程*/ rt_thread_t thread = rt_thread_create("devt", device_thread_entry, RT_NULL, 2048, 25, 7); /* 创建成功则启动线程*/ if (thread!= RT_NULL) rt_thread_startup(thread); return 0; }```有没有大神老师,给点建议。
查看更多
3
个回答
默认排序
按发布时间排序
flyboy
2019-06-03
Do my self();
楼主可以先用usb转串口工具调试一下,测试串口3的工作是否正常,然后再测试上层应用代码
Ernest
2019-06-04
这家伙很懒,什么也没写!
先检查硬件串口是否正常工作,然后检查串口引脚是否复用
孤独旅客
2019-06-04
这家伙很懒,什么也没写!
这个问题已经解决,改天我把解决办法贴出来,谢谢各位网友
撰写答案
登录
注册新账号
关注者
0
被浏览
1.3k
关于作者
孤独旅客
这家伙很懒,什么也没写!
提问
6
回答
16
被采纳
0
关注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
简单两步配置RTT源码阅读环境 vsc+clangd
2
恩智浦[FRDM-MCXN947]初探 之 ADC与DAC
3
LVGL使用字库IC芯片显示中文
4
基于STM32H750和Rt-Thread的CANFD通信实现的记录(一)
5
freemodbus主机在freertos的适配,参考rtthread例程
热门标签
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在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
SFUD
msh
rt_mq_消息队列_msg_queue
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1443
个答案
289
次被采纳
张世争
805
个答案
174
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
4
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
1
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部