嵌入式c语言调试开关

来源:本站
导读:目前正在解读《嵌入式c语言调试开关》的相关信息,《嵌入式c语言调试开关》是由用户自行发布的知识型内容!下面请观看由(电工技术网 - www.9ddd.net)用户发布《嵌入式c语言调试开关》的详细说明。
简介:在你自认为程序已经没有bug的时候,就要除去这些调试代码,应为系统在正常运行时这些用于调试的信息是无用的,而且会占用时间和空间。怎么删除呢,下面给出最简单的一种方法。

在调试程序时,经常会用到assert和printf之类的函数,我最近做的这个工程里就有几百个assert,在你自认为程序已经没有bug的时候,就要除去这些调试代码,应为系统在正常运行时这些用于调试的信息是无用的,而且会占用时间和空间。怎么删除呢,俺以前都是用笨方法,一个一个注释,能用注释也是经过改进的方法,俺最早都是删掉之后出了问题再重新写的,但是这次几百个一个一个删除的话可是要了俺的小命了,一首mp3听完,还不到一百个。以前看过st的函数库,老外的代码就是规范,俺现在的代码好多都是在st和ti那里照搬的,呵呵。

下面给出最简单的一种方法:

#define DEBUG#ifdef DEBUG#define PRINTF(x) printf x#else#define PRINTF(x)         ((void)0)#endif

使用时,PRINTF(( "Hello World!nr" ));

注意这里是两个括号,一个会报错的

不使用时,直接将"#define DEBUG"屏蔽掉

另外一个调试时常用的方法是assert,还是在一个头文件里,这里用的是STM32函数库的例子

#ifdef DEBUG 1/******************************************************************************** Macro Name : assert_param* Description : The assert_param macro is used for function's parameters check.* It is used only if the library is compiled in DEBUG mode.* Input : - expr: If expr is false, it calls assert_failed function* which reports the name of the source file and the source* line number of the call that failed.* If expr is true, it returns no value.* Return : None*******************************************************************************/#define assert_param(expr) ((expr) ? (void)0 : assert_failed((u8 *)__FILE__, __LINE__))/* Exported functions ------------------------------------------------------- */void assert_failed(u8* file, u32 line);#else#define assert_param(expr) ((void)0)#endif/* DEBUG *///assert_failed此函数要自己定义#ifdef DEBUG/******************************************************************************** Function Name : assert_failed* Description : Reports the name of the source file and the source line number* where the assert_param error has occurred.* Input : - file: pointer to the source file name* - line: assert_param error line source number* Output : None* Return : None*******************************************************************************/void assert_failed(u8* file, u32 line){/* User can add his own implementation to report the file name and line number,ex: printf("Wrong parameters value: file %s on line %drn", file, line) *//* Infinite loop */    while (1){    }}#endif

提醒:《嵌入式c语言调试开关》最后刷新时间 2024-03-14 01:03:44,本站为公益型个人网站,仅供个人学习和记录信息,不进行任何商业性质的盈利。如果内容、图片资源失效或内容涉及侵权,请反馈至,我们会及时处理。本站只保证内容的可读性,无法保证真实性,《嵌入式c语言调试开关》该内容的真实性请自行鉴别。