Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
给的例程编译都通不过
发布于 2020-04-03 10:40:04 浏览:2257
订阅该版
```c #include
#define THREAD_PRIORITY 25 #define THREAD_STACK_SIZE 512 #define THREAD_TIMESLICE 5 rt_uint32_t SystemCoreClock = 100000; static rt_thread_t tid1 = RT_NULL; /* 线程1 的信号处理函数*/ void thread1_signal_handler(int sig) { rt_kprintf("thread1 received signal %d
", sig); } /* 线程1 的入口函数*/ static void thread1_entry(void *parameter) { int cnt = 0; /* 安装信号*/ rt_signal_install(SIGUSR1, thread1_signal_handler);//安装信号 rt_signal_unmask(SIGUSR1);//解除信号阻塞 /* 运行10 次*/ while (cnt < 10) { /* 线程1 采用低优先级运行,一直打印计数值*/ rt_kprintf("thread1 count : %d
", cnt); cnt++; rt_thread_mdelay(100); } } /* 信号示例的初始化*/ int main(void) { /* 创建线程1 */ tid1 = rt_thread_create("thread1", thread1_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if (tid1 != RT_NULL) rt_thread_startup(tid1); rt_thread_mdelay(300); /* 发送信号SIGUSR1 给线程1 */ rt_thread_kill(tid1, SIGUSR1);//发送信号 return 0; } /* 导出到msh 命令列表中*/ MSH_CMD_EXPORT(signal_sample, signal sample); ``` ``` *** Using Compiler 'V5.06 update 6 (build 750)', folder: 'D:\Keil_v5\ARM\ARMCC\Bin' Rebuild target 'Target 1' compiling core_cm0.c... compiling main.c... assembling startup_ht60xx.s... compiling CpuCfg.c... assembling context_rvds.S... compiling cpuport.c... compiling clock.c... compiling idle.c... compiling irq.c... compiling ipc.c... compiling components.c... compiling mem.c... compiling kservice.c... compiling object.c... D:\Keil_v5\ARM\PACK\RealThread\RT-Thread\3.1.3\src\object.c(262): warning: #550-D: variable "obj" was set but never used struct rt_object *obj; D:\Keil_v5\ARM\PACK\RealThread\RT-Thread\3.1.3\src\object.c: 1 warning, 0 errors compiling scheduler.c... compiling timer.c... compiling board.c... compiling thread.c... linking... .\Objects\001.axf: Error: L6218E: Undefined symbol rt_signal_install (referred from main.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_signal_unmask (referred from main.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_thread_create (referred from main.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_thread_kill (referred from main.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_system_signal_init (referred from components.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_thread_free_sig (referred from idle.o). .\Objects\001.axf: Error: L6218E: Undefined symbol rt_thread_handle_sig (referred from scheduler.o). Not enough information to list image symbols. Not enough information to list load addresses in the image map. Finished: 2 information, 0 warning and 7 error messages. ".\Objects\001.axf" - 7 Error(s), 1 Warning(s). Target not created. Build Time Elapsed: 00:00:05 ```
查看更多
6
个回答
默认排序
按发布时间排序
lbqmail
2020-04-03
这家伙很懒,什么也没写!
``` //
IPC(Inter-process communication) ConfigurationIPC(进程间通信)配置 //
Using Semaphore使用信号量 //
Using Semaphore #define RT_USING_SIGNALS // //
Using Mutex使用互斥 //
Using Mutex //#define RT_USING_MUTEX // //
Using Event使用事件 //
Using Event //#define RT_USING_EVENT // //
Using MailBox使用邮箱 //
Using MailBox #define RT_USING_MAILBOX // //
Using Message Queue使用消息队列 //
Using Message Queue //#define RT_USING_MESSAGEQUEUE // //
``` 打开了就是这个结果
fy_2022
2022-05-05
这家伙很懒,什么也没写!
![image.png](https://oss-club.rt-thread.org/uploads/20220505/5556b927a57b040bf7a5b4229bb2425f.png) 可能RT_USING_SIGNALS没有配置,可以在.config文件中查看
yangying
2023-09-19
这家伙很懒,什么也没写!
需要在工程Kernel内核下添加signal.c文件,文件路径为工程下`\rt-thread\src`里面,跟ipc.c的路径相同
1279_3_19
2023-10-28
这家伙很懒,什么也没写!
https://blog.csdn.net/qq_54418895/article/details/125079054 好像这篇blog能解决
撰写答案
登录
注册新账号
关注者
1
被浏览
2.3k
关于作者
lbqmail
这家伙很懒,什么也没写!
提问
1
回答
1
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
本月问答贡献
张世争
7
个答案
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
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部