Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
assert_断言
10
开机时产生断言shall not be used in ISR
发布于 2022-03-10 14:43:51 浏览:1959
订阅该版
系统在开机的时容易出现`Function[rt_object_find] shall not be used in ISR(0) assertion failed at function:rt_object_find, line number:561` 这个提示是说`rt_object_find`不能再中断中用,但是有时候开机又是能通过的 原先的程序都没有这个问题但是最近不知道什么原因导致上电后容易出这个断言 但是因为有看门狗,只要有这个就会重启,重启几次后就会正常开机工作。 出现问题时的信息 ![image.png](https://oss-club.rt-thread.org/uploads/20220310/722e4a5e13eb1c2d4754ce095ffe0461.png) 想请问各位大佬,同样的程序为什么有时候开机就会导致断言呢,有时候又是正常的
查看更多
4
个回答
默认排序
按发布时间排序
nongxiaoming
2022-03-10
rt-thread大师兄
看你的log像是哪个中断里面用到了time时间,然后因为前面没有找到rtc设备,导致libc里面time时间获取的时候又去尝试rt_device_find("rtc"),触发这个rt_object_find,我的猜想是这样的,你看下是不是。
crystal266
2022-03-10
嵌入式
rt_object_find() 这个函数的注释写的是不能在中断中使用,所以要查一下哪部分的代码在中断中调用了该函数,从而来避免这个问题的出现。至于为什么不能在中断中使用,查看源码,猜想是从链表中查找节点时关闭了中断,可能需要花费的时间比较久,所以系统不建议在中断中使用,不知道对不对。 ``` /** * @brief This function will find specified name object from object * container. * * @param name is the specified name of object. * * @param type is the type of object * * @return the found object or RT_NULL if there is no this object * in object container. * * @note this function shall not be invoked in interrupt status. */ rt_object_t rt_object_find(const char *name, rt_uint8_t type) { struct rt_object *object = RT_NULL; struct rt_list_node *node = RT_NULL; struct rt_object_information *information = RT_NULL; information = rt_object_get_information((enum rt_object_class_type)type); /* parameter check */ if ((name == RT_NULL) || (information == RT_NULL)) return RT_NULL; /* which is invoke in interrupt status */ RT_DEBUG_NOT_IN_INTERRUPT; /* enter critical */ rt_enter_critical(); /* try to find object */ rt_list_for_each(node, &(information->object_list)) { object = rt_list_entry(node, struct rt_object, list); if (rt_strncmp(object->name, name, RT_NAME_MAX) == 0) { /* leave critical */ rt_exit_critical(); return object; } } /* leave critical */ rt_exit_critical(); return RT_NULL; } ```
TXH97
2022-04-04
这家伙很懒,什么也没写!
问题解决没,想学习学习为什么,感觉很神奇的问题
123456wl
2022-07-28
努力,,,,,,,,,,,
楼主你咋解决的,我也是这个问题
撰写答案
登录
注册新账号
关注者
0
被浏览
2k
关于作者
Dwyer
这家伙很懒,什么也没写!
提问
30
回答
17
被采纳
0
关注TA
发私信
相关问题
1
rt_object_init中报assertion failed错误?
2
串口中断读取信号量释放函数断言失败问题
3
请问在新建工程并且添加MAX30102的组件之后编译下载怎么为什么会报这种错呢
4
运行 tls_test 出现错误,这个是什么原因
5
使用ringbuffer时,自检到thread的type不匹配
6
webnet cgi 回调 出现assert
7
keil里面移植RT系统之后,上电直接assertation
8
使用max30102软件包时出现线程断言错误
9
进入到assert后,软看门狗仍在喂狗的问题
10
shall not be used in ISR
推荐文章
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
使用RC522软件包驱动FM1722
2
常量数据类型和表达式陷阱分享
3
进行i2c驱动移植的经验总结
4
在VSCode中使用clang-format
5
我该如何使用这个微雪的WIFI400 WIFI-LPB-100在rtt里或者我该怎样为它开发驱动
热门标签
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
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
809
个答案
175
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
3
篇文章
5
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部