Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
finsh shell 中的BUG问题!
发布于 2010-02-01 12:43:03 浏览:9710
订阅该版
最近看到强大的shell之后,实际动手在我的STM32板子上移植测试了一下,发现有如下几个问题: 我输入如下几个命令((list)thread(),list(*************************************),当然这几个命令都不是shell所支持的命令,但是也不应该造成MCU进入FAULT)后,会导致MCU进入FAULT状态。我尝试对这几个问题进行了修改,版主看下是否合理? 1.输入命令 list)thread() 对如下函数进行了修改,改动部分用斜体加粗表示的。 ```static struct finsh_node* proc_cast_expr(struct finsh_parser* self) { enum finsh_token_type token; enum finsh_type type; struct finsh_node* cast; next_token(token, &(self->token)); if (token == finsh_token_type_left_paren) { type = proc_type(self); match_token(token, &(self->token), finsh_token_type_right_paren); cast = proc_cast_expr(self); if(cast != NULL) { cast->data_type = type; //2010-1-29修正 ( list_mem() ) 命令死机BUG. } return cast; } finsh_token_replay(&(self->token)); return proc_unary_expr(self); }``` 2. list(,,) 对如下函数进行了修改,改动部分用斜体加粗表示的。 ```static struct finsh_node* proc_param_list(struct finsh_parser* self) { enum finsh_token_type token; struct finsh_node *node, *assign; assign = proc_assign_expr(self); if(assign == NULL) { return NULL; // 添加这里 } node = assign; next_token(token, &(self->token)); while (token == finsh_token_type_comma ) { finsh_node_sibling(assign) = proc_assign_expr(self); if (finsh_node_sibling(assign) != NULL) assign = finsh_node_sibling(assign); else finsh_error_set(FINSH_ERROR_EXPECT_OPERATOR); next_token(token, &(self->token)); } finsh_token_replay(&(self->token)); return node; }``` 3.list(,,,,,,,,,,,,,,,,) 对如下函数进行了修改,改动部分用斜体加粗表示的。 ```static struct finsh_node* make_sys_node(u_char type, struct finsh_node* node1, struct finsh_node* node2) { struct finsh_node* node; node = finsh_node_allocate(type); if (node != NULL) { finsh_node_child(node) = node1; //2010.1.29修正 } else finsh_error_set(FINSH_ERROR_NULL_NODE); if (node1 != NULL) finsh_node_sibling(node1) = node2; else finsh_error_set(FINSH_ERROR_NULL_NODE); return node; }``` 4. list(*************************************) 这个命令会将finsh_thread_entry()线程任务的 堆栈耗尽,而导致MCU进入fualt。即使开辟大的缓存,只有增加命令参数的个数,问题依然存在,这个问题还没找到解决的方案,不知道版主能否提供? 5.另外,一次发送大于输入缓存长度(默认为255)的数据(中间不要有回车字符),MCU也会进入fault状态。 //此处原程序对line数据越界没有考虑到,导致在进行大量数据包通讯时刻此处溢出 ```if(pos >= LINE_BUF_LENGTH) { pos = 0; } line[pos] = ch;``` 贴图如下: ```finsh>>list)thread() psr: 0x61004000 pc: 0x08002cfc lr: 0x08003f23 r12: 0x80808080 r03: 0x2000157d r02: 0x00003b29 r01: 0x2000157d r00: 0x00000000 hard fault on thread: tshell thread pri status sp stack size max used left tick error -------- ---- ------- ---------- ---------- ---------- ---------- --- tidle 0x1f ready 0x00000050 0x00000100 0x00000050 0x0000001e 000 tshell 0x14 ready 0x00000230 0x00000800 0x0000042c 0x00000048 000 | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>>list(*************************************) psr: 0x21000000 pc: 0x08002f6e lr: 0x08002f5d r12: 0x80808080 r03: 0x20000614 r02: 0x00000010 r01: 0x00000019 r00: 0x00000000 hard fault on thread: ? thread pri status sp stack size max used left tick error -------- ---- ------- ---------- ---------- ---------- ---------- --- tidle 0x1f ready 0x00000050 0x00000100 0x00000050 0x0000001b 000 0x7c 0x00000091 0x00000005 0x00000005 0x2000167c 134229409 0x00 | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>> | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>> finsh>> finsh>> finsh>> finsh>> finsh>> finsh>>list(,,,,,,,,,,,,,,,,,,,,,,,,,,,,,) psr: 0x41000000 pc: 0x08002f2c lr: 0x08002a33 r12: 0x80808080 r03: 0x2000157d r02: 0x00000000 r01: 0x2000157d r00: 0x0800aab5 hard fault on thread: tshell thread pri status sp stack size max used left tick error -------- ---- ------- ---------- ---------- ---------- ---------- --- tidle 0x1f ready 0x00000050 0x00000100 0x00000050 0x0000001b 000 tshell 0x14 ready 0x00000230 0x00000800 0x00000418 0x00000064 000 | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>>list(,,,) psr: 0x41000000 pc: 0x08002f2c lr: 0x08002a33 r12: 0x80808080 r03: 0x2000157d r02: 0x00003b29 r01: 0x2000157d r00: 0x0800aab5 hard fault on thread: tshell thread pri status sp stack size max used left tick error -------- ---- ------- ---------- ---------- ---------- ---------- --- tidle 0x1f ready 0x00000050 0x00000100 0x00000050 0x00000016 000 tshell 0x14 ready 0x00000230 0x00000800 0x00000418 0x00000064 000 | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>>l Unknown symbol finsh>> finsh>> finsh>>list)thread() psr: 0x61004000 pc: 0x08002cfc lr: 0x08003f23 r12: 0x80808080 r03: 0x2000157d r02: 0x00003b29 r01: 0x2000157d r00: 0x00000000 hard fault on thread: tshell thread pri status sp stack size max used left tick error -------- ---- ------- ---------- ---------- ---------- ---------- --- tidle 0x1f ready 0x00000050 0x00000100 0x00000050 0x0000001e 000 tshell 0x14 ready 0x00000230 0x00000800 0x00000330 0x00000064 000 | / - RT - Thread Operating System / | 0.3.0 build Jan 27 2010 2006 - 2009 Copyright by rt-thread team finsh>>```
查看更多
4
个回答
默认排序
按发布时间排序
bernard
2010-02-01
这家伙很懒,什么也没写!
谢谢反馈,万分感谢。 finsh shell从问世时争议不断,到现在大家都喜欢使用,并且还想尽办法在产品中依然保留一份shell的外接接口(默认串口1,然后想法改到串口2、3,甚至是网口)。您是第一提供这么详尽信息 & 问题修正的用户,谢谢! 如果您有时间和兴趣,请给一个Google的账号,开放RT-Thread代码相应权限给你,这样你可以更为灵活的修改。 finsh确实在有些条件下会出现错误,只是因为时间上比较少,所以一直没详细跟踪。我会尽快复现下这个问题,以及使用你的补丁。
lan_tian88
2010-02-02
这家伙很懒,什么也没写!
呵呵,谢谢版主对我的信任。 我还没有一个Google的账号,只要我发现什么问题,我还是上传到这个帖子里面吧。
bernard
2010-02-02
这家伙很懒,什么也没写!
>呵呵,谢谢版主对我的信任。 >我还没有一个Google的账号,只要我发现什么问题,我还是上传到这个帖子里面吧。 --- 好的,谢谢!我会先把这些更新添加到svn中。
撰写答案
登录
注册新账号
关注者
0
被浏览
9.7k
关于作者
lan_tian88
这家伙很懒,什么也没写!
提问
1
回答
6
被采纳
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
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
15
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部