first commit

This commit is contained in:
liyp
2026-08-25 22:07:47 -04:00
commit 84b128edb6
31 changed files with 11731 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef __FLASH_H__
#define __FLASH_H__
///* 自定义Flash布局相关 */
//#define BOOT_SIZE_16 /* 16Kb的Bootloader大小 不带网络*/
////#define BOOT_SIZE_32 /* 32Kb的Bootloader大小 带网络*/
//#define FLASH_BASE_ADDR 0x08000000 //Flash基地址
//#define BOOT_ADDR 0x08000000 //引导程序地址
////BOOT程序大小
//#ifdef BOOT_SIZE_16
// #define BOOT_ROM 0x4000
//#endif
//#ifdef BOOT_SIZE_32
// #define BOOT_ROM 0x8000
//#endif
//#define USER_PARAM_ADDR (FLASH_BASE_ADDR + BOOT_ROM) //用户参数分区
//#define APPLICATION_ADDR 0x08010000 //从128K的位置开始是应用程序
#endif