sdk/UART/SimplUART/APP/BoardCfg.h

30 lines
830 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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