打印

STM32F0xx的头文件USE_STDPERIPH_DRIVER宏的作用

[复制链接]
8852|11
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
sunmeat|  楼主 | 2014-8-27 08:35 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 sunmeat 于 2014-8-27 08:40 编辑

【转载】在网上找到的一篇**,完美的解决我上个帖子的问题
https://bbs.21ic.com/icview-790448-1-1.html
ST公司提供STM32F0xx的头文件STM32F0xx.h,编译器都要定义一个宏:USE_STDPERIPH_DRIVER,如果不定义它 ----  照ST公司的做法,就会出现问题,如

实际上,打开头文件研究一下就知道,关系到这个宏的地方只有两处:
沙发
sunmeat|  楼主 | 2014-8-27 08:36 | 只看该作者
本帖最后由 sunmeat 于 2014-8-27 08:37 编辑

第一处是:
#if !defined USE_STDPERIPH_DRIVER
/**
* [url=home.php?mod=space&uid=247401]@brief[/url] Comment the line below if you will not use the peripherals drivers.
In this case, these drivers will not be included and the application code will
be based on direct access to peripherals registers
*/
/*#define USE_STDPERIPH_DRIVER*/
#endif /* USE_STDPERIPH_DRIVER */

使用特权

评论回复
板凳
sunmeat|  楼主 | 2014-8-27 08:37 | 只看该作者
第二处是:
第二处是:

#ifdef USE_STDPERIPH_DRIVER
  #include "stm32f0xx_conf.h"
#endif

使用特权

评论回复
地板
sunmeat|  楼主 | 2014-8-27 08:38 | 只看该作者
大家一看就应该明白,使用这个宏的目的只有一个,就是把头文件stm32f0xx_conf.h包含进来。

而stm32f0xx_conf.h头文件的除了包含所有硬件资源的头文件外,还包含有一个宏定义:
#include "stm32f0xx_adc.h"
#include "stm32f0xx_cec.h"
#include "stm32f0xx_crc.h"
……


/* Exported macro ------------------------------------------------------------*/
#ifdef  USE_FULL_ASSERT

/**
  * [url=home.php?mod=space&uid=247401]@brief[/url]  The assert_param macro is used for function's parameters check.
  * @param  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.
  * @retval None
  */
  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
/* Exported functions ------------------------------------------------------- */
  void assert_failed(uint8_t* file, uint32_t line);
#else
  #define assert_param(expr) ((void)0)
#endif /* USE_FULL_ASSERT */

使用特权

评论回复
5
sunmeat|  楼主 | 2014-8-27 08:38 | 只看该作者
可见,如果知道了它的使用目的,用户完全可以根据自己的喜好,随意更改之。

使用特权

评论回复
6
grace75| | 2014-8-31 21:01 | 只看该作者
学习了!

使用特权

评论回复
7
haolaishi| | 2014-8-31 23:02 | 只看该作者
学习了,终于知道这个怎么用了

使用特权

评论回复
8
shuiqinghan2012| | 2016-1-24 16:57 | 只看该作者
mark,

使用特权

评论回复
9
shuiqinghan2012| | 2016-1-24 16:57 | 只看该作者
可是如何用 void assert_failed(uint8_t* file, uint32_t line);打印需要的错误信息

使用特权

评论回复
10
sherryqueen| | 2017-4-7 10:39 | 只看该作者
mark!

使用特权

评论回复
11
铁匠之锤| | 2019-7-17 09:39 | 只看该作者
学习了,Mark

使用特权

评论回复
12
lvben5d| | 2019-7-17 11:09 | 只看该作者
GD32也是一样的,所有库要用到,就必须在预编译选项里,加这个宏!!

使用特权

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

本版积分规则

208

主题

2132

帖子

13

粉丝