Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
idle空闲线程
栈溢出_StackOverflow
idle堆栈溢出,导致系统反复重启
发布于 2024-03-20 10:46:36 浏览:293
订阅该版
idle线程线程溢出 ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20240320/b6291fc3e7b1fdbe6e7820bb52f29449.png.webp) 如上图,堆栈溢出后,系统反复重启。 具体溢出代码如下 ``` thread:tidle stack overflowthread pri status sp stack size max used left tick error-------- --- ------- ---------- ---------- ------ ---------- --- tidle 31 ready 0x00000220 0x00000200 100% 0x0000001c 000 main 10 suspend 0x000000d0 0x00000200 93% 0x0000000d 000 ``` 目前不清楚啥原因 先有rt_config如下: ```c /* RT-Thread config file */ #ifndef __RTTHREAD_CFG_H__ #define __RTTHREAD_CFG_H__ #include
#if defined(__CC_ARM) || defined(__CLANG_ARM) #include "RTE_Components.h" #if defined(RTE_USING_FINSH) #define RT_USING_FINSH #endif //RTE_USING_FINSH #endif //(__CC_ARM) || (__CLANG_ARM) // <<< Use Configuration Wizard in Context Menu >>> //
Basic Configuration //
Maximal level of thread priority <8-256> //
Default: 32 #define RT_THREAD_PRIORITY_MAX 32 //
OS tick per second //
Default: 1000 (1ms) #define RT_TICK_PER_SECOND 1000 //
Alignment size for CPU architecture data access //
Default: 4 #define RT_ALIGN_SIZE 4 //
the max length of object name<2-16> //
Default: 8 #define RT_NAME_MAX 8 //
Using RT-Thread components initialization //
Using RT-Thread components initialization #define RT_USING_COMPONENTS_INIT 1 // #define RT_USING_USER_MAIN 1 //
the stack size of main thread<1-4086> //
Default: 512 #define RT_MAIN_THREAD_STACK_SIZE 512 //
//
Debug Configuration //
enable kernel debug configuration //
Default: enable kernel debug configuration #define RT_DEBUG 1 // //
enable components initialization debug configuration<0-1> //
Default: 0 #define RT_DEBUG_INIT 1 //
thread stack over flow detect //
Diable Thread stack over flow detect #define RT_USING_OVERFLOW_CHECK 1 // //
//
Hook Configuration //
using hook //
using hook //#define RT_USING_HOOK 1 // //
using idle hook //
using idle hook //#define RT_USING_IDLE_HOOK 1 // //
//
Software timers Configuration //
Enables user timers #define RT_USING_TIMER_SOFT 0 #if RT_USING_TIMER_SOFT == 0 #undef RT_USING_TIMER_SOFT #endif //
The priority level of timer thread <0-31> //
Default: 4 #define RT_TIMER_THREAD_PRIO 10 //
The stack size of timer thread <0-8192> //
Default: 512 #define RT_TIMER_THREAD_STACK_SIZE 512 //
//
IPC(Inter-process communication) Configuration //
Using Semaphore //
Using Semaphore #define RT_USING_SEMAPHORE 1 // //
Using Mutex //
Using Mutex #define RT_USING_MUTEX 1 // //
Using Event //
Using Event #define RT_USING_EVENT 1 // //
Using MailBox //
Using MailBox #define RT_USING_MAILBOX 1 // //
Using Message Queue //
Using Message Queue #define RT_USING_MESSAGEQUEUE 1 // //
//
Memory Management Configuration //
Dynamic Heap Management //
Dynamic Heap Management #define RT_USING_HEAP 1 // //
using small memory //
using small memory #define RT_USING_SMALL_MEM 1 // //
using tiny size of memory //
using tiny size of memory #define RT_USING_TINY_SIZE 256 // //
//
Console Configuration //
Using console //
Using console #define RT_USING_CONSOLE 1 // //
the buffer size of console <1-1024> //
the buffer size of console //
Default: 128 (128Byte) #define RT_CONSOLEBUF_SIZE 128 //
#define RT_USING_FINSH #if defined(RT_USING_FINSH) #define FINSH_USING_MSH #define FINSH_USING_MSH_ONLY //
Finsh Configuration //
the priority of finsh thread <1-7> //
the priority of finsh thread //
Default: 6 #define __FINSH_THREAD_PRIORITY 5 #define FINSH_THREAD_PRIORITY (RT_THREAD_PRIORITY_MAX / 8 * __FINSH_THREAD_PRIORITY + 1) //
the stack of finsh thread <1-4096> //
the stack of finsh thread //
Default: 4096 (4096Byte) #define FINSH_THREAD_STACK_SIZE 512 //
the history lines of finsh thread <1-32> //
the history lines of finsh thread //
Default: 5 #define FINSH_HISTORY_LINES 1 #define FINSH_USING_SYMTAB //
#endif // <<< end of configuration section >>> #define RT_USING_DEVICE 1 #endif ``` 相关idle堆栈配置如下: ```c #ifndef IDLE_THREAD_STACK_SIZE #if defined (RT_USING_IDLE_HOOK) || defined(RT_USING_HEAP) #define IDLE_THREAD_STACK_SIZE 512 #else #define IDLE_THREAD_STACK_SIZE 512 #endif #endif ``` main函数很干净,仅有一个打印函数和延时: ```c int main() { while(1) { rt_kprintf("main\r\n"); rt_thread_mdelay(1); } } ```
查看更多
3
个回答
默认排序
按发布时间排序
天下起了沙
2024-03-20
这家伙很懒,什么也没写!
idle的入口函数呢
梦笑真美
2024-03-20
这家伙很懒,什么也没写!
空闲函数都做了啥
zhkag
2024-03-20
这家伙很懒,什么也没写!
加大 IDLE_THREAD_STACK_SIZE
撰写答案
登录
注册新账号
关注者
0
被浏览
293
关于作者
第十一代人造人无纯
这家伙很懒,什么也没写!
提问
3
回答
0
被采纳
0
关注TA
发私信
相关问题
1
空闲线程调用LED闪烁钩子函数
2
程序跑飞了,msh发命令进不了shell 大循环,一直在idle里
3
RT-Thread Nano 支持CPU使用率计算吗?
4
SCB_CFSR_UFSR:0x02_INVSTATE
5
IDLE 线程总是显示超时状态,是什么原因?
6
idle线程资源回收
7
MSH运行hwtimer_test后把idle线程kill了?
8
idle线程中的rt_free
9
为什么RTT中空闲线程永远不能被挂起?
10
NANO3.15 无法进入空闲线程钩子函数【已解决】
推荐文章
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
如何在master上的BSP中添加配置yml文件
2
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
3
RT-Thread 发布 EtherKit开源以太网硬件!
4
rt-thread使用cherryusb实现虚拟串口
5
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
热门标签
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
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部