30 lines
830 B
C
30 lines
830 B
C
|
#ifndef _BOARD_CFG_H_
|
|||
|
#define _BOARD_CFG_H_
|
|||
|
#include "debug.h"
|
|||
|
#include "userTimer.h"
|
|||
|
#include "SWM320.h"
|
|||
|
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|||
|
模块注释
|
|||
|
内容:功能配置区
|
|||
|
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
|
|||
|
/**********************************************************
|
|||
|
行注释
|
|||
|
内容:Uart控制台
|
|||
|
**********************************************************/
|
|||
|
#define UART_CONSOLE 1
|
|||
|
/**********************************************************
|
|||
|
行注释
|
|||
|
内容:SPI_FLASH
|
|||
|
**********************************************************/
|
|||
|
#define SPI_FLASH 1
|
|||
|
|
|||
|
#if(SPI_FLASH)
|
|||
|
#include "SPI_Flash.h"
|
|||
|
#endif
|
|||
|
/**********************************************************
|
|||
|
行注释
|
|||
|
内容:
|
|||
|
**********************************************************/
|
|||
|
void BoardInit(void);
|
|||
|
|
|||
|
#endif
|