打印

关于ST库函数的assert_param

[复制链接]
7235|12
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
banhushui|  楼主 | 2011-6-4 21:12 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
不少人问在ST官方的STM32的库函数里有很多assert_param是什么作用
比如下面的
assert_param(IS_ADC_ALL_PERIPH(ADCx));
assert_param(IS_ADC_IT(ADC_IT));
assert_param(IS_GPIO_ALL_PERIPH(GPIOx));
assert_param(IS_GPIO_MODE(GPIO_InitStruct->GPIO_Mode));assert_param(IS_GPIO_PIN(GPIO_InitStruct->GPIO_Pin));  
这样的函数,几乎是带参数的函数前面都有调用assert_param
实际这是个调试函数,当你在调试程序时打开DEBUG参数assert_param才起作用。
assert_param是反映参数你在调用库函数传递的参数是错误的。
assert_param的原型定义在stm32f10x_conf.h 文件里
定义如下:
/* Exported macro ------------------------------------------------------------*/
#ifdef  DEBUG
/*******************************************************************************
* 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 */
#endif /* __STM32F10x_CONF_H */

可以看到assert_param实际在DEBUG打开时就是assert_failed,关闭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 %d\r\n", file, line) */
  //用户可以在这里添加错误信息:比如打印出出错的文件名和行号
  /* Infinite loop */
  while (1)
  {
  }
}
#endif
沙发
Chaos_zc| | 2011-8-6 01:38 | 只看该作者
解惑了,顶!

使用特权

评论回复
板凳
kavieen| | 2011-8-6 21:48 | 只看该作者
哇 终于找到关于assert_param的帖子了,谢谢楼主!!:loveliness:

使用特权

评论回复
地板
rulu| | 2011-8-8 12:54 | 只看该作者
assert_param是什么作用
非常好的帖子

使用特权

评论回复
5
rulu| | 2011-8-8 12:54 | 只看该作者
多谢楼主

使用特权

评论回复
6
zhudongpo| | 2011-8-9 09:08 | 只看该作者
学习了,谢谢

使用特权

评论回复
7
lixiaoxu2meng| | 2011-8-9 09:15 | 只看该作者
很好 顶楼主

使用特权

评论回复
8
无冕之王| | 2011-8-9 09:46 | 只看该作者
楼主分析的很到位

使用特权

评论回复
9
buddy218| | 2015-5-4 09:12 | 只看该作者
好好好  好东西

使用特权

评论回复
10
liuchangyin| | 2015-5-4 11:04 | 只看该作者

使用特权

评论回复
11
泰山特曲123| | 2015-5-4 18:47 | 只看该作者
asser是断言,请参考write clean code,这本书

使用特权

评论回复
12
决狐疑| | 2015-8-25 13:00 | 只看该作者
感谢楼主解惑

使用特权

评论回复
13
大道至简| | 2015-8-30 11:22 | 只看该作者
楼主写的,还是没有看明白

使用特权

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

本版积分规则

33

主题

157

帖子

14

粉丝