17 lines
567 B
C
17 lines
567 B
C
|
|
#ifndef OTA_APP_H
|
|||
|
|
#define OTA_APP_H
|
|||
|
|
|
|||
|
|
/*===== Flash 分区定义(W25Q64 外部 Flash OTA) =====*/
|
|||
|
|
|
|||
|
|
#define PageSize 0x800U // Flash页大小 RCT6=2KB
|
|||
|
|
|
|||
|
|
// STM32F103RCT6: 256KB Flash (0x08000000 ~ 0x0803FFFF)
|
|||
|
|
// 分区:BootLoader=32KB, APP1=224KB,OTA 固件先存 W25Q64
|
|||
|
|
#define BootLoader_addr 0x08000000U ///< BootLoader 基首地址
|
|||
|
|
#define Application_1_Addr 0x08008000U ///< APP1 运行区基首地址
|
|||
|
|
|
|||
|
|
#define BootLoader_Size 0x8000U ///< BootLoader 大小 32K
|
|||
|
|
#define Application_Size 0x38000U ///< APP1 大小 224K
|
|||
|
|
|
|||
|
|
#endif /* OTA_APP_H */
|