Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
多线程
【2024-RSOC】DAY2 多线程任务
发布于 2024-07-24 20:45:58 浏览:194
订阅该版
#【2024-RSOC】DAY2 多线程任务 ##基本函数 ###线程初始化 ####静态 ````c rt_err_t rt_thread_init(struct rt_thread* thread, const char* name, void (*entry)(void* parameter), void* parameter, void* stack_start, rt_uint32_t stack_size, rt_uint8_t priority, rt_uint32_t tick); ```` ####动态 ````c rt_thread_t rt_thread_create(const char* name, void (*entry)(void* parameter), void* parameter, rt_uint32_t stack_size, rt_uint8_t priority, rt_uint32_t tick); ```` ##实战例程 ````c #include
#include
#include
#include
#ifndef RT_USING_NANO #include
#endif /* RT_USING_NANO */ #define THREAD_STACK_SIZE 1024 #define THREAD_PRIORITY 25 #define THREAD_TIMESLICE 5 int count = 0; // 线程1的入口函数 void thread1_entry(void *parameter) { while (1) { rt_kprintf("Thread 1: %d\n", count++); rt_thread_mdelay(1000); // 延迟1000毫秒 } } // 线程2的入口函数 void thread2_entry(void *parameter) { while (1) { rt_kprintf("Thread 2: %d\n", count++); rt_thread_mdelay(500); // 延迟500毫秒 } } // 主函数 int main(void) { rt_thread_t thread1 = RT_NULL; rt_thread_t thread2 = RT_NULL; // 创建线程1 thread1 = rt_thread_create("thread1", thread1_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); // 如果线程1创建成功,启动线程1 if (thread1 != RT_NULL) { rt_thread_startup(thread1); } else { rt_kprintf("Thread 1 creation failed!\n"); } // 创建线程2 thread2 = rt_thread_create("thread2", thread2_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY , // 设置不同的优先级以观察调度行为 THREAD_TIMESLICE+1); // 如果线程2创建成功,启动线程2 if (thread2 != RT_NULL) { rt_thread_startup(thread2); } else { rt_kprintf("Thread 2 creation failed!\n"); } return 0; } ```` ##结果分析 ![04a55aa41e498d0c99196b06a91fc8c.png](https://oss-club.rt-thread.org/uploads/20240724/41015609baa98335f6db687bc7bd9f58.png)
0
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
fanxiao
这家伙很懒,什么也没写!
文章
4
回答
0
被采纳
0
关注TA
发私信
相关文章
1
大家有没有遇到过多线程使用同一个串口发送数据,数据是交叉的
2
workqueue中调用rt_i2c_transfer互斥锁线程bug
3
micropython和本地线程的通信
4
大神们,我发现一个问题,RTT这个系统是不是没有查看其他线程状态的函数?
5
不知道该如何使用线程?
6
线程错误怎么判断哪里的问题(其他线程都ok)
7
rt_kprintf 多线程使用问题
8
线程优先级被中断影响
9
挂载在操作系统上的文件系统操作,需要用互斥锁防止多线程操作问题吗?
10
socket多线程操作转为单线程处理,断开连接检测代码展示
推荐文章
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组件
热门标签
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
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部