Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
写串口函数rt_device_write放在线程中就不可用了?
发布于 2013-03-31 22:53:44 浏览:3191
订阅该版
环境:RTT1.1.0, MDK4.54 我要的功能是每5秒通过串口uart2发送一个信号,所以创建了一个线程,入口如下。 ```static void query_thread_entry(void* papameter) { while(1) { uart_send(); rt_kprintf("query sent! "); rt_thread_delay(RT_TICK_PER_SECOND*5); } }``` 而函数uart_send()定义为 ```void uart_send(void) { static unsigned char uart2_tx_buffer[5]={"hello"}; rt_uint32_t tx_length; tx_length=5; rt_device_open(&uart2_device, RT_DEVICE_OFLAG_RDWR); rt_device_write(&uart2_device,0,&uart2_tx_buffer[0],tx_length); rt_kprintf("device message sent through uart "); }``` **通过console(接的是uart4)每5秒就可以看到uart_send函数里面打印出来的信息,说明已经进入线程并成功调用了函数,但是串口uart2却没有反应。 但是我把uart_send()放在int rt_application_init()里面第一行,就可以看到uart2发送出的“hello”,说明uart_send这个函数是可用的。** 所以我就困惑了,为什么放在线程里执行就不行?而放在线程之外就可以执行,是线程的问题么? 线程是这样定义的:(没有其他线程,所以优先级也不是问题) ```query_thread = rt_thread_create("query",query_thread_entry, RT_NULL, 1024, 24, 10);``` PS: 昨天也是我发帖问了一个关于串口写函数的问题,但昨天调试通之后其实也只是暂时可用,只发送了几次后就再也发不出来了,但线程还是照常在运行,不解。
查看更多
4
个回答
默认排序
按发布时间排序
rogerz
2013-04-01
这家伙很懒,什么也没写!
>``` > > static unsigned char uart2_tx_buffer[5]={"hello"}; > rt_uint32_t tx_length; > tx_length=5; > rt_device_open(&uart2_device, RT_DEVICE_OFLAG_RDWR); > rt_device_write(&uart2_device,0,&uart2_tx_buffer[0],tx_length); > rt_kprintf("device message sent through uart >"); > >``` --- 你的初始化函数是不是有问题?应该是 ``` static unsigned char uart2_tx_buffer[5]="hello"; ``` ,编译器对此没有告警? 参考[http://stackoverflow.com/questions/6915737/char-array-initialization-dilemma](http://stackoverflow.com/questions/6915737/char-array-initialization-dilemma)
grissiom
2013-04-01
这家伙很懒,什么也没写!
uart2_tx_buffer 的实际尺寸应该是 6…… write 的数量应该是 5……
rogerz
2013-04-01
这家伙很懒,什么也没写!
>uart2_tx_buffer 的实际尺寸应该是 6…… write 的数量应该是 5…… --- 开始我也是这么认为的,但实际标准不是这样的。见我楼上贴的stackoverflow的回答。 An array of character type may be initialized by a character string literal, optionally enclosed in braces. Successive characters of the character string literal (including the terminating null character** if there is room **or if the array is of unknown size) initialize the members of the array.
撰写答案
登录
注册新账号
关注者
0
被浏览
3.2k
关于作者
Shawn
这家伙很懒,什么也没写!
提问
7
回答
14
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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 Studio中构建前执行python命令
2
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
3
CherryUSB开发笔记(一):FSDEV USB IP核的 HID Remote WakeUp (USB HID 远程唤醒) 2025-01-18 V1.1
4
RT-thread 缩写字典
5
RT Thread 源码分析笔记 :线程和调度器
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
Bootloader
AT
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在线升级
PWM
cubemx
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
290
次被采纳
张世争
813
个答案
177
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
149
次被采纳
本月文章贡献
聚散无由
2
篇文章
14
次点赞
catcatbing
2
篇文章
4
次点赞
Wade
2
篇文章
2
次点赞
Ghost_Girls
1
篇文章
5
次点赞
xiaorui
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部