mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-04 16:13:33 +08:00
feat(freertos): add option to link freertos to IRAM
This commit is contained in:
@ -70,6 +70,12 @@ config FREERTOS_GLOBAL_DATA_LINK_IRAM
|
|||||||
help
|
help
|
||||||
Link FreeRTOS global data(.bss .data COMMON) from DRAM to IRAM.
|
Link FreeRTOS global data(.bss .data COMMON) from DRAM to IRAM.
|
||||||
|
|
||||||
|
config FREERTOS_CODE_LINK_TO_IRAM
|
||||||
|
bool "Link FreeRTOS code to IRAM"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Link FreeRTOS code from Flash to IRAM.
|
||||||
|
|
||||||
config FREERTOS_TIMER_STACKSIZE
|
config FREERTOS_TIMER_STACKSIZE
|
||||||
int "Timer stack size"
|
int "Timer stack size"
|
||||||
default 2048
|
default 2048
|
||||||
|
@ -10,3 +10,6 @@ entries:
|
|||||||
timers (iram_bss)
|
timers (iram_bss)
|
||||||
freertos_hooks (iram_bss)
|
freertos_hooks (iram_bss)
|
||||||
impure(iram_bss)
|
impure(iram_bss)
|
||||||
|
|
||||||
|
if FREERTOS_CODE_LINK_TO_IRAM = y:
|
||||||
|
* (noflash_text)
|
||||||
|
Reference in New Issue
Block a user