[mw_shl_code=c,true]
#define BSP_MSK_HSECFG 0x00FF0000u
/* ----------- HSE OSCILLATOR CONFIGURATION ----------- */
/* HSE = 25MHz Ext. crystal. */
DEF_BIT_CLR(BSP_REG32_RCC_CR,BSP_MSK_HSECFG);
[/mw_shl_code]
如上所示。
[mw_shl_code=c,true]0x00FF0000u与25M有什么关联吗?[/mw_shl_code]
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
即[mw_shl_code=c,true]#if !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */
[/mw_shl_code]
当然一般这个文件是锁定的,不可更改。因此可以在stm32f4xx_config.h中配置你的外部时钟参考值。
[mw_shl_code=c,true]#if !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
[/mw_shl_code]
一周热门 更多>