14 lines
202 B
C
14 lines
202 B
C
|
#include "BoardCfg.h"
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @brief 系统初始化
|
||
|
*
|
||
|
*/
|
||
|
void BoardInit(void) {
|
||
|
#if(SPI_FLASH)
|
||
|
SPI_FlashInit();
|
||
|
#endif
|
||
|
GPIO_Init(GPIOB,PIN12,1,0,0);
|
||
|
GPIO_SetBit(GPIOB, PIN12);
|
||
|
}
|