Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
rt_mq_消息队列_msg_queue
有关消息队列问题的请教
发布于 2011-10-24 15:15:39 浏览:4200
订阅该版
我的消息队列中不是每条消息都会使用到,那么如何清空不需要的内容呢?
查看更多
7
个回答
默认排序
按发布时间排序
bernard
2011-10-24
这家伙很懒,什么也没写!
只能是读出来,然后丢弃掉。 另外有RT_IPC_CMD_RESET命令,但是觉得这个应该不是你要用的。
airanver
2011-10-25
这家伙很懒,什么也没写!
多谢指点
SimonLeung
2013-05-31
这家伙很懒,什么也没写!
>只能是读出来,然后丢弃掉。 > >另外有RT_IPC_CMD_RESET命令,但是觉得这个应该不是你要用的。 --- 要是想清空队列用了RT_IPC_CMD_RESET命令,会有什么后果? 我在队列为空的时候,用了这条命令,挂起的线程立刻运行了...
SimonLeung
2013-05-31
这家伙很懒,什么也没写!
另外,能否提供一些类似于ucos的OSQAccept、OSQFlush等的功能,然后在rtconfig.h中添加控制编译这些扩展功能的宏
bernard
2013-05-31
这家伙很懒,什么也没写!
OSQAccept是干什么的?对uc不熟悉,一般其他的一些RTOS并没有这样的功能
SimonLeung
2013-05-31
这家伙很懒,什么也没写!
>OSQAccept是干什么的?对uc不熟悉,一般其他的一些RTOS并没有这样的功能 --- ``` /* ********************************************************************************************************* * ACCEPT MESSAGE FROM QUEUE * * Description: This function checks the queue to see if a message is available. Unlike OSQPend(), * OSQAccept() does not suspend the calling task if a message is not available. * * Arguments : pevent is a pointer to the event control block * * err is a pointer to where an error message will be deposited. Possible error * messages are: * * OS_NO_ERR The call was successful and your task received a * message. * OS_ERR_EVENT_TYPE You didn't pass a pointer to a queue * OS_ERR_PEVENT_NULL If 'pevent' is a NULL pointer * OS_Q_EMPTY The queue did not contain any messages * * Returns : != (void *)0 is the message in the queue if one is available. The message is removed * from the so the next time OSQAccept() is called, the queue will contain * one less entry. * == (void *)0 if you received a NULL pointer message * if the queue is empty or, * if 'pevent' is a NULL pointer or, * if you passed an invalid event type * * Note(s) : As of V2.60, you can now pass NULL pointers through queues. Because of this, the argument * 'err' has been added to the API to tell you about the outcome of the call. ********************************************************************************************************* */ #if OS_Q_ACCEPT_EN > 0 void *OSQAccept (OS_EVENT *pevent, INT8U *err) { #if OS_CRITICAL_METHOD == 3 /* Allocate storage for CPU status register */ OS_CPU_SR cpu_sr; #endif void *msg; OS_Q *pq; #if OS_ARG_CHK_EN > 0 if (pevent == (OS_EVENT *)0) { /* Validate 'pevent' */ *err = OS_ERR_PEVENT_NULL; return ((void *)0); } #endif if (pevent->OSEventType != OS_EVENT_TYPE_Q) {/* Validate event block type */ *err = OS_ERR_EVENT_TYPE; return ((void *)0); } OS_ENTER_CRITICAL(); pq = (OS_Q *)pevent->OSEventPtr; /* Point at queue control block */ if (pq->OSQEntries > 0) { /* See if any messages in the queue */ msg = *pq->OSQOut++; /* Yes, extract oldest message from the queue */ pq->OSQEntries--; /* Update the number of entries in the queue */ if (pq->OSQOut == pq->OSQEnd) { /* Wrap OUT pointer if we are at the end of the queue */ pq->OSQOut = pq->OSQStart; } *err = OS_NO_ERR; } else { *err = OS_Q_EMPTY; msg = (void *)0; /* Queue is empty */ } OS_EXIT_CRITICAL(); return (msg); /* Return message received (or NULL) */ } #endif ``` 研究了一会儿,发现可以通过检查 ``` rt_uint16_t entry; /**< index of messages in the queue */ ``` 来实现
撰写答案
登录
注册新账号
关注者
0
被浏览
4.2k
关于作者
airanver
这家伙很懒,什么也没写!
提问
13
回答
9
被采纳
0
关注TA
发私信
相关问题
1
rt_object_init中报assertion failed错误?
2
在 MDK中的NANO 里创建消息队列失败,内存堆已开启
3
如何用消息队列传递结构体数据
4
消息队列满了以后接收乱码
5
消息队列传输不定长数据
6
使用消息队列在线程中发送总失败
7
初始化第二个消息队列时发生硬件错误
8
rtthread消息队列一对多的情况
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
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
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
16
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部