/******************************************************************************* * File Name : AppConfig.h * Description : * Created on : 2018Äê5ÔÂ16ÈÕ * Author : ¶Å¼ü *******************************************************************************/ #ifndef APL_APPCONFIG_H_ #define APL_APPCONFIG_H_ /******************************************************************************* * Include Files * *******************************************************************************/ /******************************************************************************* * Macro * *******************************************************************************/ #define APP_CONFIG_VERSION "V2021051000" #define APP_CONFIG_GENERAL_FIFO_SECTOR_SIZE (4 * 1024) #define APP_CONFIG_GENERAL_FIFO_MEMBER_SIZE 64 #define APP_CONFIG_SPIFLASH_PARAM_START_ADDR 0x000000 #define APP_CONFIG_SPIFLASH_PARAM_MEMBER_SIZE 4096 #define APP_CONFIG_SPIFLASH_PARAM_END_ADDR (APP_CONFIG_SPIFLASH_PARAM_START_ADDR + (APP_CONFIG_SPIFLASH_PARAM_MEMBER_SIZE * 16)) #define APP_CONFIG_CTRL_MAP 0x10000 #define APP_CONFIG_IAPFLAG_MAP 0x11000 #define APP_CONFIG_IAP_PARAM_MAP 0x12000 #define APP_CONFIG_UWB_YMODEM_SPIFLASH_SIZEADDRESS 0x20000 #define APP_CONFIG_UWB_YMODEM_SPIFLASH_NAMESIZEADDRESS 0x20010 #define APP_CONFIG_UWB_YMODEM_SPIFLASH_NAMEADDRESS 0x20000 #define APP_CONFIG_UWB_YMODEM_SPIFLASH_DATAADDRESS 0x21000 #define APP_CONFIG_UWB_YMODEM_SPIFLASH_SIZE 0x20000 #define APP_CONFIG_IP_PORT_ADDR 0x23000 #define APP_CONFIG_APP_DOWN_LOAD_SPIFLASH_ADDRESS 0x80000 #define APP_CONFIG_APP_DOWN_LOAD_SPIFLASH_SIZE 0x80000 #define APP_CONFIG_SPIFLASH_LOG_ADDR 0x100000 #define APP_CONFIG_SPIFLASH_LOG_SIZE 0x100000 #define APP_CONFIG_BOOT_ROM_ADDRESS 0x08000000 #define APP_CONFIG_BOOT_ROM_SIZE 0x00010000 #define APP_CONFIG_APP_ROM_ADDRESS 0x08010000 #define APP_CONFIG_APP_ROM_SIZE 0x00030000 /******************************************************************************* * Type Definition * *******************************************************************************/ /******************************************************************************* * Global Function * *******************************************************************************/ void FLASH_WRITE_name(void); void UWBYmodemT_App(void); #endif /* APL_APPCONFIG_H_ */