Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
堆栈溢出问题 initialize rti_board_startthread: stack overflow
发布于 2019-08-27 09:10:30 浏览:1730
订阅该版
打开这三个选项之后, #define RT_DEBUG // //
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 错误输出:initialize rti_board_startthread: stack overflow (问题是没打开这三个选项的时候系统正常运行) 正常运行现象: \ | / - RT - Thread Operating System / | \ 3.0.3 build Aug 27 2019 2006 - 2018 Copyright by rt-thread team 这是一个RTT实验! 按下K1挂起线程,按下K2恢复线程 消息队列创建成功! 信号量创建成功! led1_thread running led1_thread running led1_thread running led1_thread running led1_thread running led1_thread running led1_thread running 系统堆栈大小为: #define RT_HEAP_SIZE 1024*10 主函数就初始化了一个LED和按键: /* 创建一个信号量 */ test_sem = rt_sem_create("test_sem",/* 信号量名字 */ 1, /* 信号量初始值,默认有一个信号量 */ RT_IPC_FLAG_FIFO); /* 信号量模式 FIFO(0x00)*/ if (test_sem != RT_NULL) rt_kprintf("信号量创建成功!
"); led1_thread = /* 线程控制块指针 */ rt_thread_create( "led1", /* 线程名字 */ led1_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 2, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (led1_thread != RT_NULL) rt_thread_startup(led1_thread); else return -1; key_thread = /* 线程控制块指针 */ rt_thread_create( "key", /* 线程名字 */ key_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 5, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (key_thread != RT_NULL) rt_thread_startup(key_thread); else return -1; 如何解决?
查看更多
4
个回答
默认排序
按发布时间排序
zhangjun
2019-08-27
这家伙很懒,什么也没写!
增大线程栈
RTT_CH
2019-08-27
这家伙很懒,什么也没写!
>增大线程栈 --- 我把两个线程栈分别增大为2048,依然输出initialize rti_board_startthread: stack overflow
zhangjun
2019-08-27
这家伙很懒,什么也没写!
ps看下实际用了多大的栈
RTT_CH
2019-08-27
这家伙很懒,什么也没写!
结贴:之前用的RTT版本是rt-thread-3.0.3 各种尝试,找了半天没找出原因。 后来放弃了,重新在github上下载了rt-thread-v4.0.1 其中把主函数的东西移植进去,运行立即正常了 串口输出如下: \ | / - RT - Thread Operating System / | \ 4.0.1 build Aug 27 2019 2006 - 2019 Copyright by rt-thread team 这是一个RTT实验! 消息队列创建成功! 信号量创建成功! led1_thread ON Successful running msh >running led1_thread OFF running Successful running ps thread pri status sp stack size max used left tick error -------- --- ------- ---------- ---------- ------ ---------- --- myprint 8 suspend 0x0000007c 0x00000200 29% 0x00000012 000 send1 7 suspend 0x0000007c 0x00000200 24% 0x00000014 000 receiv1 6 suspend 0x0000007c 0x00000200 29% 0x00000011 000 send 5 suspend 0x0000008c 0x00000200 27% 0x00000014 000 receive 4 suspend 0x0000009c 0x00000200 30% 0x00000014 000 key 2 suspend 0x0000007c 0x00000200 24% 0x00000014 000 led1 3 suspend 0x0000007c 0x00000200 29% 0x00000012 000 tshell 20 running 0x0000020c 0x00000800 25% 0x00000007 000 tidle0 31 ready 0x00000044 0x00000400 08% 0x00000020 000 msh > msh >led1_thread ON running running led1_thread OFF Successful running running free total memory: 126784 used memory : 7752 maximum allocated memory: 9952
撰写答案
登录
注册新账号
关注者
0
被浏览
1.7k
关于作者
RTT_CH
这家伙很懒,什么也没写!
提问
3
回答
5
被采纳
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
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
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
MicroPython
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
16
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
6
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部