RTthread线程间通信(邮箱,消息队列,信号/软件中断)---01实际使用API函数


layout: post
title: “RT-Thread线程间通信”
date: 2024-2-5 15:39:08 +0800
tags: RT-Thread


线程间通信

这一篇是实际使用, 代码分析看后面的文章

一般可以使用全局变量以及线程间同步进行实现

RT-Thread也提供了一部分的通信机制

邮箱

一个线程发送, 另外的线程接受信息, 进行处理

使用邮箱的时候每一次只能发送一个四字节的数据(32位处理器),特点是开销比较低,效率较高

可以发送一个地址从而达到发送多个数据的目的

非阻塞方式的邮件发送过程能够安全的应用于中断服务中, 发送以及接受信息的时候可以使用阻塞的模式

邮箱有一个缓存区, 使用rt_mailbox_t进行控制

实际使用

image-20240205161002594

创建(初始化)
/** 动态的方式创建* This function will create a mailbox object from system resource** @param name the name of mailbox 记录一个名字* @param size the size of mailbox 记录一下缓存区的大小* @param flag the flag of mailbox 一个标志位** @return the created mailbox, RT_NULL on error happen*/
rt_mailbox_t rt_mb_create(const char *name, rt_size_t size, rt_uint8_t flag)/** 静态的方式创建* This function will initialize a mailbox and put it under control of resource* management.** @param mb the mailbox object 邮箱的句柄* @param name the name of mailbox 名字* @param msgpool the begin address of buffer to save received mail 缓存区的地址* @param size the size of mailbox	缓冲区大小* @param flag the flag of mailbox 标志** @return the operation status, RT_EOK on successful*/
rt_err_t rt_mb_init(rt_mailbox_t mb,const char  *name,void        *msgpool,rt_size_t    size,rt_uint8_t   flag)

这一个标志位可以为RT_IPC_FLAG_FIFO或RT_IPC_FLAG_PRIO, 设置的是挂起任务被释放的时候是按照进入的顺序先进入的先出去还是优先级比较高的先出去

删除
/**动态* This function will delete a mailbox object and release the memory** @param mb the mailbox object** @return the error code*/
rt_err_t rt_mb_delete(rt_mailbox_t mb)
/**静态* This function will detach a mailbox from resource management** @param mb the mailbox object** @return the operation status, RT_EOK on successful*/
rt_err_t rt_mb_detach(rt_mailbox_t mb)
发送邮件
/*** This function will send a mail to mailbox object, if there are threads* suspended on mailbox object, it will be waked up. This function will return* immediately, if you want blocking send, use rt_mb_send_wait instead.** @param mb the mailbox object* @param value the mail 要发送的数据** @return the error code*/
rt_err_t rt_mb_send(rt_mailbox_t mb, rt_ubase_t value)

这是一个不等待的时钟发送函数

/*** This function will send a mail to mailbox object. If the mailbox is full,* current thread will be suspended until timeout.** @param mb the mailbox object* @param value the mail* @param timeout the waiting time 多了一个等待时间** @return the error code*/
rt_err_t rt_mb_send_wait(rt_mailbox_t mb,rt_ubase_t   value,rt_int32_t   timeout)
接收
/*** This function will receive a mail from mailbox object, if there is no mail* in mailbox object, the thread shall wait for a specified time.** @param mb the mailbox object* @param value the received mail will be saved in 给出一个存放收到的数据的位置* @param timeout the waiting time** @return the error code*/
rt_err_t rt_mb_recv(rt_mailbox_t mb, rt_ubase_t *value, rt_int32_t timeout)

使用技巧

可以使用一个这样的结构体, 每次发送这一个结构体的地址, 进行大于32字节的数据发送

struct msg
{uint32_t *data;uint32_t size;
}

消息队列

是邮箱的扩展, 没有4字节的限制

消息队列能够接收来自线程或中断服务例程中不固定长度的消息,并把消息缓存在自己的内存空间中。这些消息使用的是链表进行连接, 消息先进先出

这一个使用的拷贝的模式进行传输, 不建议直接发送大量数据(可以发送一个地址)

可以用于发送不定长的数据, 实际使用的时候可以使用消息队列发送消息, 使用邮箱表示接收到数据了

image-20240205164352685

实际使用

image-20240205164847142

创建
/**动态* This function will create a message queue object from system resource** @param name the name of message queue 名字* @param msg_size the size of message	每一个消息的大小(字节)* @param max_msgs the maximum number of message in queue 记录一下消息的最大的个数* @param flag the flag of message queue 一个标志** @return the created message queue, RT_NULL on error happen*/
rt_mq_t rt_mq_create(const char *name,rt_size_t   msg_size,rt_size_t   max_msgs,rt_uint8_t  flag)
/**静态* This function will initialize a message queue and put it under control of* resource management.** @param mq the message object	对象的句柄* @param name the name of message queue* @param msgpool the beginning address of buffer to save messages 缓冲区的地址, 动态申请*		 的时候这个的大小是 (一个数据的大小+sizeof(struct rt_mq_message)) * mq->max_msgs* @param msg_size the maximum size of message一个消息的大小* @param pool_size the size of buffer to save messages 缓冲区的大小* @param flag the flag of message queue** @return the operation status, RT_EOK on successful*/
rt_err_t rt_mq_init(rt_mq_t     mq,const char *name,void       *msgpool,rt_size_t   msg_size,rt_size_t   pool_size,rt_uint8_t  flag)

这一个标志位可以为RT_IPC_FLAG_FIFO或RT_IPC_FLAG_PRIO, 设置的是挂起任务被释放的时候是按照进入的顺序先进入的先出去还是优先级比较高的先出去

删除
/**动态* This function will delete a message queue object and release the memory** @param mq the message queue object** @return the error code*/
rt_err_t rt_mq_delete(rt_mq_t mq)
/**静态* This function will detach a message queue object from resource management** @param mq the message queue object** @return the operation status, RT_EOK on successful*/
rt_err_t rt_mq_detach(rt_mq_t mq)
发送消息
/*** This function will send a message to message queue object, if there are* threads suspended on message queue object, it will be waked up.** @param mq the message queue object * @param buffer the message 发送的消息的地址* @param size the size of buffer 发送的数据的大小** @return the error code*/
rt_err_t rt_mq_send(rt_mq_t mq, const void *buffer, rt_size_t size)

不等待

/*** This function will send a message to message queue object. If the message queue is full,* current thread will be suspended until timeout.** @param mq the message queue object* @param buffer the message* @param size the size of buffer* @param timeout the waiting time** @return the error code*/
rt_err_t rt_mq_send_wait(rt_mq_t     mq,const void *buffer,rt_size_t   size,rt_int32_t  timeout)

等待

/*** This function will send an urgent message to message queue object, which* means the message will be inserted to the head of message queue. If there* are threads suspended on message queue object, it will be waked up.** @param mq the message queue object* @param buffer the message* @param size the size of buffer** @return the error code*/
rt_err_t rt_mq_urgent(rt_mq_t mq, const void *buffer, rt_size_t size)

发送一个紧急的消息, 这一个消息会直接放到队首

接收
/*** This function will receive a message from message queue object, if there is* no message in message queue object, the thread shall wait for a specified* time.** @param mq the message queue object* @param buffer the received message will be saved in 接收到的数据* @param size the size of buffer* @param timeout the waiting time** @return the error code*/
rt_err_t rt_mq_recv(rt_mq_t    mq,void      *buffer,rt_size_t  size,rt_int32_t timeout)

信号(软件中断信号)

**注: **信号这块应该是要在微内核里使用,如果你是用宏内核版本,不推荐使用信号功能。

POSIX标准定义了sigset_t类型来定义一个信号集, 实际是一个unsigned long类型的数据, 应用程序能够使用的信号为SIGUSR1(10)和SIGUSR2(12)

他的本质是一个软件中断

收到信号的线程实际的处理方法有三种

  • 类似中断的处理程序,对于需要处理的信号,线程可以指定处理函数,由该函数来处理。
  • 忽略某个信号,对该信号不做任何处理,就像未发生过一样。
  • 对该信号的处理保留系统的默认值。

image-20240205171441255

需要定义RT_USING_SIGNALS这一个宏

实际使用

image-20240205171459644

安装信号

如果线程要处理某一信号,那么就要在线程中安装该信号。

主要用来确定信号值及线程针对该信号值的动作之间的映射关系,即线程将要处理哪个信号,该信号被传递给线程时,将执行何种操作。

rt_sighandler_t rt_signal_install(int signo, rt_sighandler_t handler)

(这一个函数是给现在的线程安装)

signo信号值(只有SIGUSR1和SIGUSR2是开放给用户使用的)

handler设置对信号值的处理方式, 这一个的实际的函数是void (*rt_sighandler_t)(int signo);

也可以使用SIG_IGN,忽略某个信号, SIG_DFL,系统会调用默认的处理函数_signal_default_handler()

返回安装信号前的handler值表示成功

阻塞(屏蔽)信号

该信号将不会递达给安装此信号的线程,也不会引发软中断处理。

void rt_signal_mask(int signo)
解除信号阻塞
void rt_signal_unmask(int signo)
发送信号
int rt_thread_kill(rt_thread_t tid, int sig)

tid: 接收信号的线程

sig: 信号值

等待信号
int rt_signal_wait(const rt_sigset_t *set, rt_siginfo_t *si, rt_int32_t timeout)

set: 指定等待的信号

si: 指向存储等到信号信息的指针

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/670950.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

高清符合要求的SCI图片使用RStudio导出

4.图片格式区别和常识 在计算机中,JPEG(发音为jay-peg, IPA:[ˈdʒeɪpɛg])是一种针对照片视频而广泛使用的有损压缩标准方法。这个名称代表Joint Photographic Experts Group(联合图像专家小组)。此团队创…

微信小程序学习指南:从基础知识到代码展示

✅作者简介:2022年博客新星 第八。热爱国学的Java后端开发者,修心和技术同步精进。 🍎个人主页:Java Fans的博客 🍊个人信条:不迁怒,不贰过。小知识,大智慧。 💞当前专栏…

Qt 常见容器类用法(一)

目录 QMap类 QHash类 QVector类 QMap类 QMap<key,T>提供一个从类型为Key的键到类型为T的值的映射。通常&#xff0c;QMap存储的数据形式是一个键对应一个值&#xff0c;并且按照键Key的次序存储数据。为了能够支持一键多值的情况&#xff0c;QMap提供QMap<key,T&g…

0206作业

TCP&#xff08;传输控制协议&#xff09;和 UDP&#xff08;用户数据报协议&#xff09;是两种常用的网络传输协议。它们之间的主要区别在于&#xff1a; 可靠性&#xff1a;TCP 是一种可靠的传输协议&#xff0c;它提供了数据传输的确认、重传和排序功能。如果数据在传输过程…

分享76个节日PPT,总有一款适合您

分享76个节日PPT&#xff0c;总有一款适合您 76个节日PPT下载链接&#xff1a;https://pan.baidu.com/s/1-j7toLaBUBAJbkd85xe4VQ?pwd8888 提取码&#xff1a;8888 Python采集代码下载链接&#xff1a;采集代码.zip - 蓝奏云 学习知识费力气&#xff0c;收集整理更不易…

C#验证字符串是否大写、小写,正则表达式vs用Char.IsUpper和Char.IsLower方法遍历字符数组

目录 一、使用的方法 1.正则表达式 2.用Char.IsUpper或Char.IsLower方法 二、源代码 1.源码 2.生成效果 一、使用的方法 1.正则表达式 正则表达式“^[A-Z]$”&#xff0c;其中[A-Z]表示匹配一个到多个大写字母。 正则表达式“^[a-z]$”&#xff0c;其中[a-z]表示匹配一个…

EasyExcel下载带下拉框和批注模板

EasyExcel下载带下拉框和批注模板 一、 代码实现 controller下载入口 /***下载excel模板* author youlu* date 2023/8/14 17:31* param response* param request* return void*/PostMapping("/downloadTemplate")public void downloadExcel(HttpServletResponse r…

Mysql-数据库优化-客户端连接参数

客户端参数 原文地址 # 连接池配置 # 初始化连接数 spring.datasource.druid.initial-size1 # 最小空闲连接数&#xff0c;一般设置和initial-size一致 spring.datasource.druid.min-idle1 # 最大活动连接数&#xff0c;一个数据库能够支撑最大的连接数是多少呢&#xff1f; …

javaEE - 23( 21000 字 Servlet 入门 -1 )

一&#xff1a;Servlet 1.1 Servlet 是什么 Servlet 是一种实现动态页面的技术. 是一组 Tomcat 提供给程序猿的 API, 帮助程序猿简单高效的开发一个 web app. 构建动态页面的技术有很多, 每种语言都有一些相关的库/框架来做这件事&#xff0c;Servlet 就是 Tomcat 这个 HTTP…

[第五天】C++继承:单继承、多继承、菱形继承和虚继承的深度解析

一、单继承 1、概述 C最重要的特征是代码重用&#xff0c;通过继承机制可以利用已有的数据类型来定义新的数据类型&#xff0c;新的类不仅拥有旧类的成员&#xff0c;还拥有新定义的成员。 例如一个B类继承于A类&#xff0c;或称从类A派生类B。这样的话&#xff0c;类A成为基类…

【Qt】常见问题

1.存在未解析的标识符 将build文件夹删掉重新编译。 2.左侧项目目录栏无法删除已添加项目 打开目标项目上一级的pro文件&#xff0c;将目标文件名字注释或者删除掉&#xff0c;最后保存&#xff0c;qt就会自动更新&#xff0c;将该项目隐藏掉。 3.在qt creator下添加槽函数…

模拟串口LV2,解决硬件串口资源不足问题!!!!

模拟串口通信 2.0 版本&#xff01;&#xff01; 我在前面的文章里面有写了 虚拟串口通信&#xff0c;虽然说能用&#xff0c;但是用过的小伙伴都说 “好!” 优缺点: 先说一点&#xff0c;2.0版本并不适用于同硬件串口的所有场合&#xff0c;仅仅针对自己开发的电子垃圾的主…

[office] 网优必备的10大经典函数公式! #知识分享#媒体

网优必备的10大经典函数公式! Excel软件看似简单&#xff0c;其实花样很多&#xff0c;尤其Excel表格。但其实只要用心多练&#xff0c;效率轻松提升个十倍百倍真不是问题!赶紧一起来get新技能吧~ ▋函数公式一 我们都知道从网管中查询出来的经纬度是没有小数点的。我看到不…

护眼灯色温多少合适?推荐五款合适色温的护眼台灯

很多人在购买台灯之后只会根据周围环境灯光的明暗调节亮度&#xff0c;对于色温的了解并不多&#xff0c;不知道色温应该调节到什么数值比较合适&#xff0c;有些人也根本没有意识到色温在影响人情绪方面起着重要作用&#xff0c;接下来就一起来看一下色温的标准。 一、什么色…

Day4.

单链表 #include <head.h>typedef struct List{int value;struct List *pointe; }*list; list create_space() {list s(struct List *)malloc(sizeof(struct List)); //向堆区申请空间s->pointe NULL;//初始化s->value 0;return s; } list inserhead_list(lis…

AI改编游戏大电影《使命召唤:幽灵重生》(下)

AI改编游戏大电影《使命召唤&#xff1a;幽灵重生》&#xff08;下&#xff09; 幽灵重生携生化武器毁灭人类&#xff0c;普莱斯上尉点上雪茄拿起武器&#xff0c;英雄再次迎来使命的召唤&#xff01; 《使命召唤&#xff1a;幽灵重生》&#xff08;下&#xff09;&#xff1a…

电力负荷预测 | 基于TCN的电力负荷预测(Python)———结果比对

文章目录 效果一览文章概述源码设计参考资料效果一览 文章概述 电力负荷预测 | 基于TCN的电力负荷预测(Python)———结果比对 python3.8 keras2.6.0 matplotlib3.5.2 numpy1.19.4 pandas1.4.3 tensorflow==2.6.0

【宝藏系列】嵌入式入门概念大全

【宝藏系列】嵌入式入门概念大全 0️⃣1️⃣操作系统&#xff08;Operating System&#xff0c;OS&#xff09; 是管理计算机硬件与软件资源的系统软件&#xff0c;同时也是计算机系统的内核与基石。操作系统需要处理管理与配置内存、决定系统资源供需的优先次序、控制输入与输…

jquery写表格,通过后端传值,并合并单元格

<!DOCTYPE html> <html> <head><title>Table Using jQuery</title><style>#tableWrapper {width: 100%;height: 200px; /* 设置表格容器的高度 */overflow: auto; /* 添加滚动条 */margin-top: -10px; /* 负的外边距值&#xff0c;根据实际…

NLP_神经概率语言模型(NPLM)

文章目录 NPLM的起源NPLM的实现1.构建实验语料库2.生成NPLM训练数据3.定义NPLM4.实例化NPLM5.训练NPLM6.用NPLM预测新词 NPLM小结 NPLM的起源 在NPLM之前&#xff0c;传统的语言模型主要依赖于最基本的N-Gram技术&#xff0c;通过统计词汇的共现频率来计算词汇组合的概率。然而…