123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #ifndef COMMON_CONFIG_H
- #define COMMON_CONFIG_H
- #include "at32f403a_407.h"
- #ifdef DEBUG
- #define DBG
- #else
- #undef DBG
- #define DBG if (0)
- #endif
- #define FW_VERSION "1.02"
-
- #define SETTINGS_SECTOR 0x08020000
-
- #define CRC_ADDRESS 0x080207FC
- #define SYS_SECTOR 0x08020800
- #define SYS_CRC_ADDRESS 0x08020FFC
-
- #define SETTINGS_CONTROL_WORD 123456789
- #define BOOT_TRY 26
- #define USER_FLASH_FIRST_PAGE_ADDRESS 0x08021000
-
- #define FW_BEGIN_ADDRESS 0x08021000
-
- #define FLASH_PAGE_SIZE 0x00000800U
- #define BACKUP_IAP_LOAD_MODE BPR_DATA1
- #define BACKUP_IAP_BOOT_TRY BPR_DATA2
- #define BACKUP_UPDATE_STATUS BPR_DATA3
- #define BACKUP_RTC_KEY BPR_DATA4
-
- #define IAP_UPDATE_NO 0
- #define IAP_UPDATE_OK 1
- #define IAP_UPDATE_ERROR 2
-
-
- #endif
|