打印

如何屏蔽掉STM32库文件中无处不在的函数assert_param?

[复制链接]
6195|5
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
yzzly|  楼主 | 2011-5-30 16:53 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
如何屏蔽掉STM32库文件中无处不在的函数assert_param?O(∩_∩)O谢谢!
沙发
phz0008| | 2011-5-30 17:08 | 只看该作者
/* 防止重定义 ----------------------------------------------------------------*/
#ifndef __STM32F10x_CONF_H
#define __STM32F10x_CONF_H

/* Includes ------------------------------------------------------------------*/
/* 当不需要使用以下功能时,注释掉相关头文件,删除相应的C源文件即可------------*/
#include "stm32f10x_adc.h"
#include "stm32f10x_bkp.h"
#include "stm32f10x_can.h"
#include "stm32f10x_cec.h"
#include "stm32f10x_crc.h"
#include "stm32f10x_dac.h"
#include "stm32f10x_dbgmcu.h"
#include "stm32f10x_dma.h"
#include "stm32f10x_exti.h"
#include "stm32f10x_flash.h"
#include "stm32f10x_fsmc.h"
#include "stm32f10x_gpio.h"
#include "stm32f10x_i2c.h"
#include "stm32f10x_iwdg.h"
#include "stm32f10x_pwr.h"
#include "stm32f10x_rcc.h"
#include "stm32f10x_rtc.h"
#include "stm32f10x_sdio.h"
#include "stm32f10x_spi.h"
#include "stm32f10x_tim.h"
#include "stm32f10x_usart.h"
#include "stm32f10x_wwdg.h"
#include "misc.h"  /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */

#ifdef  USE_FULL_ASSERT

/**
  * @说明   assert_param 用于参数检查.
  * @参数  expr: 假如expr是flase, 将会调用 assert_param
  *   报告错误发生所在的源文件名和所在的行数
  *   假如expr 是 true, 将步返回值.
  * @返回值 无
  */
  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
/* 函数定义------------------------------------------------------- */
  void assert_failed(uint8_t* file, uint32_t line);
#else
  #define assert_param(expr) ((void)0)
#endif /* USE_FULL_ASSERT */

#endif /* __STM32F10x_CONF_H */

/***********************************文件结束***********************************/

使用特权

评论回复
板凳
danceman_uk| | 2011-5-31 00:53 | 只看该作者
THANK YOU!

使用特权

评论回复
地板
哲哲55| | 2012-2-27 18:12 | 只看该作者
也就是说如果不是debug的话。就不会参与编译,是吧?

使用特权

评论回复
5
香水城| | 2012-2-27 19:15 | 只看该作者
非DEBUG即可

使用特权

评论回复
6
falder21| | 2014-8-20 17:15 | 只看该作者

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

427

主题

1178

帖子

3

粉丝