Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
优先级
优先级与释放时间分配与影响
发布于 2022-08-01 15:31:55 浏览:518
订阅该版
```c /* 线程1 的入口函数*/ static void thread1_entry(void *parameter) { rt_uint32_t count,i,j,k = 0; while (1) { Display();/*18 tick*/ k ^= 1; if(k) GPIO_WriteBit(GPIOC,GPIO_Pin_5,1); else GPIO_WriteBit(GPIOC,GPIO_Pin_5,0); rt_thread_mdelay(100); } } ``` ```c ALIGN(RT_ALIGN_SIZE) static char thread2_stack[4096]; static struct rt_thread thread2; /* 线程2 入口*/ static void thread2_entry(void *param) { rt_uint32_t count,i,j,k = 0; while (1) { count++; count %= 160; Line(count,1,0xFF); i = 15; while(i--) { LCDPaint(i*16 ,(count/16)*16, 16, 16, &GB2312[32*(15-i)],0); } if(key_flag) { Task(); key_flag = 0; } k ^= 1; if(k) GPIO_WriteBit(GPIOC,GPIO_Pin_4,1); else GPIO_WriteBit(GPIOC,GPIO_Pin_4,0); rt_thread_mdelay(50); } } ``` ```c ALIGN(RT_ALIGN_SIZE) static char thread3_stack[4096]; static struct rt_thread thread3; /* 线程3 入口*/ static void thread3_entry(void *param) { rt_uint32_t count,i,j,k = 0; while (1) { KeyScan(); /* 每10ms扫描按键一次 */ k ^= 1; if(k) GPIO_WriteBit(GPIOC,GPIO_Pin_6,1); else GPIO_WriteBit(GPIOC,GPIO_Pin_6,0); rt_thread_mdelay(10); } } ``` ```c /* 线程示例*/ int thread_sample(void) { /* 创建线程1, 名称是thread1, 入口是thread1_entry*/ tid1 = rt_thread_create("thread1", thread1_entry, RT_NULL, THREAD_STACK_SIZE<<4,/*THREAD_STACK_SIZE,*/ 25, THREAD_TIMESLICE); /* 如果获得线程控制块, 启动这个线程*/ if (tid1 != RT_NULL) rt_thread_startup(tid1); /* 初始化线程2, 名称是thread2, 入口是thread2_entry */ rt_thread_init(&thread2, "thread2", thread2_entry, RT_NULL, &thread2_stack[0], sizeof(thread2_stack), 25 - 1, THREAD_TIMESLICE); rt_thread_startup(&thread2); /* 初始化线程3, 名称是thread3, 入口是thread3_entry */ rt_thread_init(&thread3, "thread3", thread3_entry, RT_NULL, &thread3_stack[0], sizeof(thread3_stack), 25 - 2, THREAD_TIMESLICE); rt_thread_startup(&thread3); return 0; } ``` ```c int main(void)//PRIORITY:10 { rt_uint32_t count = 0; thread_sample(); while (1) { rt_thread_mdelay(100); } } ``` 优先级:main>thread3>thread2>thread1 但是thread3的输出PC方波容易被打乱,周期不是10ms thread2的输出PC方波周期也不是50ms, thread1的耗时Display();/*18 tick*/屏蔽则所有任务都正常, 请问为什么低优先级会影响高优先级线程?对于优先级和释放时间的分配策略有哪些? 谢谢
查看更多
3
个回答
默认排序
按发布时间排序
lchnu
2022-08-01
Witness, Understand, Skill
换`rt_thread_delay_until`函数试试,绝对延时。
jizhongbiao
2022-08-01
这家伙很懒,什么也没写!
1,display里面有没有使用信号量?信号量使用不当会造成优先级翻转,建议使用互斥信号量。 2,display里面是否有开关中断或者进入退出临界区之类的操作?这类操作会暂停内核的线程调度。
a1012112796
2022-08-03
这家伙很懒,什么也没写!
软件定时器的精度太低了,受 systick 频率的驱动一般只有 1ms, 乃至是 10ms. 要想输出方波,建议使用硬件定时器来驱动延时。
撰写答案
登录
注册新账号
关注者
1
被浏览
518
关于作者
ZOEF_5835
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
对源码中优先级处理和定时器的两个疑问?
2
RTT3.1.3低优先级任务delay后不能就绪的问题
3
线程优先级跟功能优先级之间的冲突解决办法
4
can报文发送优先级
5
RTT内核里面的硬定时器的优先级问题
6
线程抢占是否需要等当前任务释放CPU资源
7
RT-Thread 线程插入至相同优先级表,没有遍历就绪表,线程节点顺序不乱了吗
8
不同优先级线程获得信号量后输出不同?
9
RT_TIMER里面分了HARD和SOFT类型,本质有啥区别
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
TinyUSB Demo运行教程
2
RT-Thread学习大礼包一键带走!
3
freemodbus从机调试说明
4
【1024】瑞萨 RA 系列 BSP 制作与适配最新版本的 Keil 、 RSC、固件,较新的 FSP
5
基于 RT-Thread 星火一号开发板的俄罗斯方块
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
ART-Pi
FinSH
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
rt-smart
FAL
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
cubemx
PWM
flash
packages_软件包
freemodbus
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
出出啊
1516
个答案
342
次被采纳
小小李sunny
1440
个答案
289
次被采纳
张世争
799
个答案
171
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
1
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
4
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部