Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Kernel
15天rt-thread入门学习 - 第十三天(信号)
发布于 2018-05-30 09:29:57 浏览:2214
订阅该版
信号,主要包括: 1、信号的本质 信号其实就是软中断,主要用于异步通信。 2、例程源码解读及信号相关操作介绍 rt_signal_install -- 在任务中安装信号 rt_signal_unmask -- 关注信号(定义要监测的信号) rt_thread_kill -- 发送信号 在安装信号时已经指定了信号处理函数,所以没有接收信号API 3、信号丢失 每个信号都是一个bit 如果有多个任务向同一个任务发送信号,信号不会进行排队,则关注信号的任务不知道信号是哪个任务发送的,所以存在信号丢失现象。 作业: 1、创建两个任务,任务1运行中向任务2发送一个信号,任务2收到信号后退出任务的执行。 在示例程序基础上修改后的程序如下: ```#include
#define THREAD_PRIORITY 25 #define THREAD_STACK_SIZE 512 #define THREAD_TIMESLICE 5 static rt_thread_t tid1 = RT_NULL, tid2 = RT_NULL; static uint8_t flag = 0; /* 线程1的信号处理函数 */ void thread1_signal_handler(int sig) { rt_kprintf("thread1 received signal %d
", sig); } /* 线程2的信号处理函数 */ void thread2_signal_handler(int sig) { rt_kprintf("thread2 received signal %d
", sig); flag = 1; } /* 线程1的入口函数 */ static void thread1_entry(void *parameter) { int cnt = 0; /* 运行20次 */ while (cnt < 20) { /* 线程1采用低优先级运行,一直打印计数值 */ rt_kprintf("thread1 count : %d
", cnt); cnt++; if(cnt == 10) { /* 发送信号 SIGUSR2 给线程2 */ rt_thread_kill(tid2, SIGUSR2); } rt_thread_delay(10); } } /* 线程2的入口函数 */ static void thread2_entry(void *parameter) { int cnt = 0; /* 安装信号 */ rt_signal_install(SIGUSR2, thread2_signal_handler); rt_signal_unmask(SIGUSR2); /* 运行10次 */ while (flag == 0) { rt_kprintf("thread2 count : %d
", cnt); cnt++; rt_thread_delay(20); } } /* 信号示例的初始化 */ int signal_sample_init() { /* 创建线程1 */ tid1 = rt_thread_create("t1", /* 线程1的名称是t1 */ thread1_entry, RT_NULL, /* 入口是thread1_entry,参数是RT_NULL */ THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if (tid1 != RT_NULL) /* 如果获得线程控制块,启动这个线程 */ rt_thread_startup(tid1); /* 创建线程2 */ tid2 = rt_thread_create("t2", /* 线程2的名称是t2 */ thread2_entry, RT_NULL, /* 入口是thread2_entry,参数是RT_NULL */ THREAD_STACK_SIZE, THREAD_PRIORITY - 1, THREAD_TIMESLICE); if (tid2 != RT_NULL) /* 如果获得线程控制块,启动这个线程 */ rt_thread_startup(tid2); rt_thread_delay(500); /* 发送信号 SIGUSR1 给线程1 */ //rt_thread_kill(tid1, SIGUSR1); /* 发送信号 SIGUSR2 给线程2 */ //rt_thread_kill(tid2, SIGUSR2); return 0; } /* 如果设置了RT_SAMPLES_AUTORUN,则加入到初始化线程中自动运行 */ #if defined (RT_SAMPLES_AUTORUN) && defined(RT_USING_COMPONENTS_INIT) INIT_APP_EXPORT(signal_sample_init); #endif /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(signal_sample_init, signal sample);``` 运行结果: ``` \ | / - RT - Thread Operating System / | \ 3.0.4 build May 30 2018 2006 - 2018 Copyright by rt-thread team msh >sig signal_sample_init msh >signal_sample_init thread2 count : 0 thread1 count : 0 thread1 count : 1 thread2 count : 1 thread1 count : 2 thread1 count : 3 thread2 count : 2 thread1 count : 4 thread1 count : 5 thread2 count : 3 thread1 count : 6 thread1 count : 7 thread2 count : 4 thread1 count : 8 thread1 count : 9 thread2 received signal 11 thread1 count : 10 thread1 count : 11 thread1 count : 12 thread1 count : 13 thread1 count : 14 thread1 count : 15 thread1 count : 16 thread1 count : 17 thread1 count : 18 thread1 count : 19 msh >```
查看更多
2
个回答
默认排序
按发布时间排序
tyustli
2019-12-16
这家伙很懒,什么也没写!
>请问我头文件包含 rtthread.h 和 rtdevice.h 使用 rt_signal_install() rt_signal_unmas ... --- 信号在工程里面默认是没有打开的,需要在 env 里面使用 menuconfig 命令打开信号的支持: [attach]12705[/attach]
RickHua
2019-12-04
这家伙很懒,什么也没写!
请问我头文件包含 rtthread.h 和 rtdevice.h 使用 rt_signal_install() rt_signal_unmask() rt_thread_kill() 函数时,keil提示我没有定义这些函数,请问是我还没有包含其他的头文件吗?
撰写答案
登录
注册新账号
关注者
0
被浏览
2.2k
关于作者
coolbor
这家伙很懒,什么也没写!
提问
16
回答
3
被采纳
0
关注TA
发私信
相关问题
1
请教cpu使用率分析
2
选择FreeRTOS, 还是RT-Thread。
3
thread heap stack overflow ?
4
rtt消息队列delay问题
5
释放被删除线程的内存地方在哪里啊
6
请教:各线程结束后,释放其中的内存的连续性问题
7
STM32F103中断关于信号量、邮箱问题
8
RTT中的线程栈大小如何控制
9
关于线程由执行态变为挂起态的代码实现,,,
10
rt_malloc(rt_size_t size)内存分配函数最小分配尺寸问题
推荐文章
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
RTduino物联网应用零基础入门
2
TinyUSB Demo运行教程
3
RT-Thread学习大礼包一键带走!
4
freemodbus从机调试说明
5
【1024】瑞萨 RA 系列 BSP 制作与适配最新版本的 Keil 、 RSC、固件,较新的 FSP
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
ART-Pi
FinSH
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
cubemx
PWM
flash
packages_软件包
freemodbus
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
rt_mq_消息队列_msg_queue
keil_MDK
ulog
C++_cpp
at_device
本月问答贡献
张世争
8
个答案
2
次被采纳
用户名由3_15位
10
个答案
1
次被采纳
KunYi
4
个答案
1
次被采纳
踩姑娘的小蘑菇
2
个答案
1
次被采纳
bernard
1
个答案
1
次被采纳
本月文章贡献
出出啊
1
篇文章
2
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
4
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部