Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
邮箱_mailbox
关于用邮箱传输变量数据的一些疑问
发布于 2023-02-26 20:33:28 浏览:614
订阅该版
我看站内有个关于邮箱传输变量数据的回答下,关于如何传输是这样的: ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230226/bb0597fab7898db9e4a70df8e4fb2236.png.webp) ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230226/fb3bf68549300ea1e4dd7679ef266c08.png) ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230226/af1928ca00600f1127d883b77854d389.png) 我的问题是为啥整这么复杂,查看rt_mb_send()函数可以看到第二个形参是rt_ubase_t类型的,追溯一下就是unsigned long类型的数。不懂为何看到的帖子里需要做强制类型转换,或者取地址的。 ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230226/60dd77f660a5765b2459fea1305eab1a.png) 以下是我进行邮箱传输变量的代码: ```c #include
rt_mailbox_t mail = RT_NULL;//创建邮箱指针变量 //创建线程指针变量 rt_thread_t th1 = RT_NULL; rt_thread_t th2 = RT_NULL; void thread1_entry(void *parameter) { rt_ubase_t val = RT_NULL; while(1) { if(rt_mb_recv(mail, &val, RT_WAITING_FOREVER) == RT_EOK) { if(val == 0) rt_kprintf("action 1\n"); if(val == 1) rt_kprintf("action 2\n"); if(val == 2) rt_kprintf("action 3\n"); if(val == 3) rt_kprintf("action 4\n"); if(val == 4) rt_kprintf("action 5\n"); rt_thread_mdelay(100); } } } void thread2_entry(void *parameter) { int i=0; for (i = 0; i < 5; ++i) { rt_mb_send(mail, i); rt_kprintf("mailbox send number%d\n",i); rt_thread_mdelay(500); } rt_kprintf("mailbox send end"); } int mailbox_test(void) { //创建邮箱 mail = rt_mb_create("mb", 5, RT_IPC_FLAG_PRIO); if (mail == RT_NULL) { rt_kprintf("mailbox created failed\n"); } else { rt_kprintf("mailbox created success\n"); } //创建线程1 th1 = rt_thread_create("thread1", thread1_entry, RT_NULL, 512, 10, 10); if (th1 == RT_NULL) { rt_kprintf("thread1 create failed\n"); } else { rt_kprintf("thread1 create success\n"); } rt_thread_startup(th1); //创建线程2 th2 = rt_thread_create("thread2", thread2_entry, RT_NULL, 512, 10, 10); if (th2 == RT_NULL) { rt_kprintf("thread2 create failed\n"); } else { rt_kprintf("thread2 create success\n"); } rt_thread_startup(th2); return 0; } ``` 传输的部分为: ```c int i=0; rt_mb_send(mail, i); ``` 接受的部分为: ```c rt_ubase_t val = RT_NULL; if(rt_mb_recv(mail, &val, RT_WAITING_FOREVER) == RT_EOK) ``` 实际调试结果也可以进行正常传输: ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230226/0153d49b4b296628603435ec0d60dd68.png.webp) 我的这用法没问题吧,小白虚心请教 还望各位前辈指教!
查看更多
张世争
2023-02-26
学以致用
- 单个值传递,这样做没有问题。 - 如果传递一个结构体数据的话,需要保证结构体是【全局】的,传递时传递结构体变量的指针。 - 邮箱只能传递 32 值或指针
1
个回答
默认排序
按发布时间排序
撰写答案
登录
注册新账号
关注者
0
被浏览
614
关于作者
sharkw
这家伙很懒,什么也没写!
提问
10
回答
0
被采纳
0
关注TA
发私信
相关问题
1
邮箱阻塞接收设为永久阻塞却收到了RT_ETIMEOUT错误码
2
mailbox 邮件收发只能在一个文件中进行
3
mailbox接收函数对于超时时间的处理疑问
4
关于事件集和邮箱那一块
5
邮箱能否支持多个收听?
6
关于邮箱传递消息,当消息很长的时候
7
一对多线程间通信的问题
8
邮箱,队列,信号在LCD菜单中内容刷新的选用
9
关于邮箱的疑问(如何解决在接收端处理速度慢情况下的同地址发送内容)
10
使用邮箱在某些情况下收不到邮件
推荐文章
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 2024开发者大会议程正式发布!
2
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
3
RT-Thread EtherKit开源以太网硬件正式发布
4
如何在master上的BSP中添加配置yml文件
5
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
热门标签
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
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
MicroPython
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
19
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
6
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
RTT_逍遥
1
篇文章
5
次点赞
大龄码农
1
篇文章
5
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部