Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
DMA
串口
USART3串口接收不到数据
发布于 2024-07-21 16:28:31 浏览:485
订阅该版
在main里面调用这个uart_sample(); 可以发送出去,但是接收不到发进来的数据 ```c ///* // * Copyright (c) 2006-2018, RT-Thread Development Team // * // * SPDX-License-Identifier: Apache-2.0 // * // * Change Logs: // * Date Author Notes // * 2018-08-15 misonyo first implementation. // */ ///* // * 程序清单:这是一个 串口 设备使用例程 // * 例程导出了 uart_sample 命令到控制终端 // * 命令调用格式:uart_sample uart2 // * 命令解释:命令第二个参数是要使用的串口设备名称,为空则使用默认的串口设备 // * 程序功能:通过串口输出字符串"hello RT-Thread!",然后错位输出输入的字符 //*/ //#include
//#include
//#include
//#include
//#define SAMPLE_UART_NAME "uart3" /* 串口设备名称 */ //struct serial_configure config ; // 初始化配置参数 ///* 用于接收消息的信号量 */ //static struct rt_semaphore rx_sem; //static rt_device_t serial; /* 串 口 设 备 句 柄 */ ///* 接收数据回调函数 */ //static rt_err_t uart_input(rt_device_t dev, rt_size_t size) //{ // /* 串口接收到数据后产生中断,调用此回调函数,然后发送接收信号量 */ // rt_sem_release(&rx_sem); // return RT_EOK; //} //static void serial_thread_entry(void *parameter) //{ // char ch[200]; // while (1) // { // /* 从串口读取一个字节的数据,没有读取到则等待接收信号量 */ // //ch = // //rt_sem_take(&rx_sem, RT_WAITING_FOREVER); // // rt_device_read(serial, 0, &ch, sizeof( ch )) ; // //rt_device_read(serial, 0, &ch, 1 ) ; //// while (rt_device_read(serial, 0, &ch, sizeof(ch) ) != 1) //// { //// /* 阻塞等待接收信号量,等到信号量后再次读取数据 */ //// rt_sem_take(&rx_sem, RT_WAITING_FOREVER); //// } // /* 读取到的数据通过串口错位输出 */ // //ch = ch + 1; // //rt_device_write(serial, 0, &ch, sizeof(ch)); // rt_thread_mdelay(1000); // rt_device_write(serial , 0 , ch , ( sizeof( ch ))); // //rt_kprintf("%s", ch); // rt_thread_mdelay(500); // } //} //int uart_sample(void) //{ // rt_err_t ret = RT_EOK; // //char uart_name[RT_NAME_MAX]; // char str[] = "hello RT-Thread123!\r\n"; // //// char *argc = "uart3"; //// //// if (argc == 2) //// { //// rt_strncpy(uart_name, argv[1], RT_NAME_MAX); //// } //// else //// { //// rt_strncpy(uart_name, SAMPLE_UART_NAME, RT_NAME_MAX); //// } // // /* 查找串口设备 */ // serial = rt_device_find(SAMPLE_UART_NAME); // // if (!serial) // { // rt_kprintf("find %s failed!\n", SAMPLE_UART_NAME); // return RT_ERROR; // } // // /* 以读写及中断接收方式打开串口设备 */ // rt_device_open(serial, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_INT_RX); // // /* 修改串口配置参数 */ // // config.baud_rate = BAUD_RATE_115200; //修改波特率为 115200 // config.data_bits = DATA_BITS_8; //数据位 8 // config.stop_bits = STOP_BITS_1; //停止位 1 // config.bufsz = 128; //修改缓冲区 buff size 为 128 // config.parity = PARITY_NONE; //无奇偶校验位 // /* 控制串口设备。通过控制接口传入命令控制字,与控制参数 */ // /* 初始化信号量 */ // rt_sem_init(&rx_sem, "rx_sem", 0, RT_IPC_FLAG_FIFO); // // // // /* 设置接收回调函数 */ // rt_device_set_rx_indicate(serial, uart_input); // // /* 发送字符串 */ // rt_device_write(serial, 0, str, (sizeof( str ))); // // /* 创建 serial 线程 */ // rt_thread_t thread = rt_thread_create("serial", serial_thread_entry, RT_NULL, 1024, 25, 10); // // /* 创建成功则启动线程 */ // if (thread != RT_NULL) // { // rt_thread_startup(thread); // } // else // { // //ret = RT_ERROR; // rt_kprintf("thread err\n"); // } // //return ret; //} /* 导出到 msh 命令列表中 */ //MSH_CMD_EXPORT(uart_sample, uart device sample); /* * Copyright (c) 2006-2024, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2024-02-03 RT-Thread first version */ #include
#include
#include
#define SAMPLE_UART_NAME "uart3" /* 串口设备名称 */ /* 串口设备句柄 */ static rt_device_t serial; /* 消息队列控制块 */ static struct rt_messagequeue rx_mq; /* 串口接收消息结构*/ struct rx_msg { rt_device_t dev; rt_size_t size; }; /* 接收数据回调函数 */ static rt_err_t uart_input(rt_device_t dev, rt_size_t size) { struct rx_msg msg; rt_err_t result; msg.dev = dev; msg.size = size; result = rt_mq_send(&rx_mq, &msg, sizeof(msg)); if ( result == -RT_EFULL) { /* 消息队列满 */ rt_kprintf("message queue full!\n"); } return result; } static void serial_thread_entry(void *parameter) { struct rx_msg msg; rt_err_t result; rt_uint32_t rx_length; static char rx_buffer[RT_SERIAL_RB_BUFSZ + 1]; while (1) { rt_memset(&msg, 0, sizeof(msg)); /* 从消息队列中读取消息*/ result = rt_mq_recv(&rx_mq, &msg, sizeof(msg), RT_WAITING_FOREVER); //接收不到消息一直等 if (result == RT_EOK) { // rt_kprintf("100000000\n"); /* 从串口读取数据*/ rx_length = rt_device_read( serial , 0 , rx_buffer , msg.size ); rx_buffer[rx_length] = '\0'; /* 通过串口设备 serial 输出读取到的消息 */ rt_device_write(serial, 0, rx_buffer, rx_length ); rt_kprintf("%s\n",rx_buffer); } } } int uart_sample(void) { rt_err_t ret = RT_EOK; char str[] = "hello RT-Thread!\r\n"; static char msg_pool[256]; /* 查找串口设备 */ serial = rt_device_find(SAMPLE_UART_NAME); if (!serial) { rt_kprintf("find %s failed!\n", SAMPLE_UART_NAME); return RT_ERROR; } /* 初始化消息队列 */ rt_mq_init(&rx_mq, "rx_mq", msg_pool, /* 存放消息的缓冲区 */ sizeof(struct rx_msg), /* 一条消息的最大长度 */ sizeof(msg_pool), /* 存放消息的缓冲区大小 */ RT_IPC_FLAG_FIFO); /* 如果有多个线程等待,按照先来先得到的方法分配消息 */ /* 以 DMA 接收及轮询发送方式打开串口设备 */ rt_device_open(serial, RT_DEVICE_FLAG_DMA_RX); /* 设置接收回调函数 */ rt_device_set_rx_indicate(serial, uart_input); /* 发送字符串 */ rt_device_write(serial, 0, str, (sizeof(str) - 1)); /* 创建 serial 线程 */ rt_thread_t thread = rt_thread_create("serial", serial_thread_entry, RT_NULL, 1024, 25, 10); /* 创建成功则启动线程 */ if (thread != RT_NULL) { rt_thread_startup(thread); } else { //ret = RT_ERROR; rt_kprintf("thread err\n"); } // return ret; } ```
查看更多
2
个回答
默认排序
按发布时间排序
红枫
认证专家
2024-07-22
这家伙很懒,什么也没写!
先检查下uart3的引脚配置是否正确,有的芯片引脚可能需要重映射
梦笑真美
2024-07-22
这家伙很懒,什么也没写!
引脚初始化是否正常,板子RX引脚连接是否正常
撰写答案
登录
注册新账号
关注者
0
被浏览
485
关于作者
six_1
这家伙很懒,什么也没写!
提问
3
回答
1
被采纳
0
关注TA
发私信
相关问题
1
串口DMA发送数据时,数据被覆盖
2
关于串口DMA模式下rt_device_close问题
3
利用stm32f427实现usb转串口,电脑端什么也没有识别到
4
finsh 控制台 适配 RS 485请大神指点????
5
uart_sample.c 中,读串口设备时偏移量pos要设置为-1而不是0?
6
【结贴】at_device软件包中对串口接收数据缺少判断导致数据接收异常
7
串口无法接受数据,但可以发送
8
串口如何有效的清除掉接收缓冲,而不必一个一个的去读取
9
串口接收使用方式问题
10
雅特力FINSH问题
推荐文章
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
【RT-Thread】【ci】【scons】将ci.attachconfig.yml和scons结合使用
2
Rt-thread中OTA下载后,bootloader不搬程序
3
ulog 日志 LOG_HEX 输出时间改为本地日期时间
4
在RT-Thread Studio中构建前执行python命令
5
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
热门标签
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
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
7
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部