Merge branch 'feature/esp32_ulp_allow_8kb' into 'master'

esp32: allow up to 8 kB of ULP program size

Closes IDFGH-1772

See merge request espressif/esp-idf!10727
pull/4512/merge
Ivan Grokhotkov 2020-10-20 04:08:57 +08:00
commit 48f27cb5ab
2 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -95,7 +95,7 @@ MEMORY
Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled.
*/
rtc_slow_seg(RW) : org = 0x50000000 + CONFIG_ESP32_ULP_COPROC_RESERVE_MEM,
len = 0x1000 - CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
len = 0x2000 - CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
/* external memory ,including data and text */
extern_ram_seg(RWX) : org = 0x3F800000,

Wyświetl plik

@ -45,8 +45,7 @@ extern "C" {
*************************************************************************************
* rtc memory addr type size usage
* 0x3ff61000(0x50000000) Slow SIZE_CP Co-Processor code/Reset Entry
* 0x3ff61000+SIZE_CP Slow 4096-SIZE_CP
* 0x3ff62800 Slow 4096 Reserved
* 0x3ff61000+SIZE_CP Slow 8192-SIZE_CP
*
* 0x3ff80000(0x400c0000) Fast 8192 deep sleep entry code
*