MDK中使用STM32官方固件庫(kù)
.h文件在KeilARMINCSTSTM32F10x
本文引用地址:http://www.ex-cimer.com/article/201611/315427.htm.c文件在KeilARMRV31LIBSTSTM32F10x
在stm32f10x_conf.h中類似如下的定義:
#define _SPI2
#define _SPI3
在stm32f10x_map.h中
#ifdef _SPI2
#endif
#ifdef _SPI3
#endif
就是說(shuō)只有在stm32f10x_conf.h中定義了外設(shè)的標(biāo)簽(如_SPI2),才能訪問(wèn)SPI2的寄存器。因此用戶希望訪問(wèn)某外設(shè),必須在stm32f10x_conf.h中定義標(biāo)簽。
評(píng)論