Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread
学习笔记
assert_断言
RT-Thread 入门学习笔记 - 解决RT_ASSERT失效的问题
发布于 2021-02-19 18:08:37 浏览:3684
订阅该版
[tocm] [RT-Thread 入门学习笔记 - 目录](https://club.rt-thread.org/ask/article/3420.html) [RT-Thread 入门学习笔记 - menuconfig Kconfig的使用](https://club.rt-thread.org/ask/article/2427.html) [RT-Thread 入门学习笔记 - 熟悉动态内存申请与释放](https://club.rt-thread.org/ask/article/2552.html) [RT-Thread 入门学习笔记 - 查看线程栈的地址](https://club.rt-thread.org/ask/article/2554.html) [RT-Thread 入门学习笔记 - 解决RT_ASSERT失效的问题](https://club.rt-thread.org/ask/article/2559.html) [RT-Thread 入门学习笔记 - Keil MDK软件调试排查assert](https://club.rt-thread.org/ask/article/2562.html) [RT-Thread 入门学习笔记 - 熟悉全局中断的操作](https://club.rt-thread.org/ask/article/2569.html) ## 前言 - 自己在使用动态内存过程中,重复rt_free一个指针,发现竟然没有出错! - 忽然发现自己的代码异常的健壮,不出现RT_ASSERT断言死机? - 经过软件调试,发现:自己关闭了 RT_ASSERT功能!! ## 开启RT_ASSERT功能 ![2021-02-19_180051.png](https://oss-club.rt-thread.org/uploads/20210219/bf7aca168495e8b8016272dacef362bf.png) ![2021-02-19_180103.png](https://oss-club.rt-thread.org/uploads/20210219/17beff4f33a3aa04625bc62d6d19c7bd.png) ## 分析原因 * 要开启:`#define RT_DEBUG` * 为什么不开启:`#define RT_DEBUG`,RT_ASSERT就不起作用了呢? * 原来RT_ASSERT代码的执行,rt_assert_handler,依赖:RT_DEBUG ``` /* rt-thread\src\kservice.c */ #ifdef RT_DEBUG /* RT_ASSERT(EX)'s hook */ void (*rt_assert_hook)(const char *ex, const char *func, rt_size_t line); /** * This function will set a hook function to RT_ASSERT(EX). It will run when the expression is false. * * @param hook the hook function */ void rt_assert_set_hook(void (*hook)(const char *ex, const char *func, rt_size_t line)) { rt_assert_hook = hook; } /** * The RT_ASSERT function. * * @param ex the assertion condition string * @param func the function name when assertion. * @param line the file line number when assertion. */ void rt_assert_handler(const char *ex_string, const char *func, rt_size_t line) { volatile char dummy = 0; if (rt_assert_hook == RT_NULL) { #ifdef RT_USING_MODULE if (dlmodule_self()) { /* close assertion module */ dlmodule_exit(-1); } else #endif { rt_kprintf("(%s) assertion failed at function:%s, line number:%d \n", ex_string, func, line); while (dummy == 0); } } else { rt_assert_hook(ex_string, func, line); } } RTM_EXPORT(rt_assert_handler); #endif /* RT_DEBUG */ ``` ![2021-02-19_180431.png](https://oss-club.rt-thread.org/uploads/20210219/1e6dc89a09c90ebd5cea4b1d363363c1.png) ## 问题解决 ``` .config - RT-Thread Configuration RT-Thread Kernel [*] Enable debugging features ---> ``` - 使能:#define RT_DEBUG后,RT_ASSERT正常了 ![2021-02-19_180711.png](https://oss-club.rt-thread.org/uploads/20210219/791f33f9c5285e7fda66bf1696752b52.png) - 至于什么时候关闭的这个内核选项,不清楚了,遇到问题,多请教,多调试,多总结。
1
条评论
默认排序
按发布时间排序
登录
注册新账号
关于作者
张世争
学以致用
文章
131
回答
805
被采纳
174
关注TA
发私信
相关文章
1
RT-THREAD在STM32H747平台上移植lwip
2
正点原子miniSTM32开发板读写sdcard
3
反馈rtt串口驱动对低功耗串口lpuart1不兼容的问题
4
Keil MDK 移植 RT-Thread Nano
5
RT1061/1052 带 RTT + LWIP和LPSPI,有什么坑要注意吗?
6
RT thread HID 如何收发数据
7
求一份基于RTT系统封装好的STM32F1系列的FLASH操作程序
8
RT-Thread修改项目名称之后不能下载
9
rt-studio编译c++
10
有木有移植rt-thread(nano)到riscv 32位MCU上
推荐文章
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组件
热门标签
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
编译报错
SFUD
msh
rt_mq_消息队列_msg_queue
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1443
个答案
289
次被采纳
张世争
805
个答案
174
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
4
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
1
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
投诉
建议
回到
底部