08656c3034
1. 新增 crypto, onchip_Flash, soft_i2c 驱动 2. 新增 oneshot 配网功能 3. 完善 I2C, UART, SPI, WIFI 等基本驱动 4. 更新 Kconfig 配置,用户交互更加友好 5. 屏蔽 末尾 80 内存,无法作为栈使用。
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
/*###ICF### Section handled by ICF editor, don't touch! ****/
|
|
/*-Editor annotation file-*/
|
|
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
|
|
/*-Specials-*/
|
|
define symbol __ICFEDIT_intvec_start__ = 0x08010100;
|
|
/*-Memory Regions-*/
|
|
/* rom 959K */
|
|
define symbol __ICFEDIT_region_ROM_start__ = 0x08010100;
|
|
define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF;
|
|
/* ram 160k */
|
|
define symbol __ICFEDIT_region_RAM_start__ = 0x20000000;
|
|
define symbol __ICFEDIT_region_RAM_end__ = 0x20028000;
|
|
/*-Sizes-*/
|
|
define symbol __ICFEDIT_size_cstack__ = 0xc00;
|
|
define symbol __ICFEDIT_size_heap__ = 0x1A000;
|
|
/**** End of ICF editor section. ###ICF###*/
|
|
|
|
define memory mem with size = 4G;
|
|
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
|
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
|
|
|
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
|
|
|
initialize by copy { readwrite };
|
|
do not initialize { section .noinit };
|
|
|
|
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
|
|
|
place in ROM_region { readonly };
|
|
place in RAM_region { readwrite, last block CSTACK}; |