mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-22 01:02:57 +00:00

This commit adds a new Kconfig option, viz., CONFIG_FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH, which places additional FreeRTOS functions, such as those which can be called from and ISR context, into Flash memory. This feature utilizes the Flash auto suspend/resume feature of the Flash chip.
8 lines
251 B
Plaintext
8 lines
251 B
Plaintext
# Enable Flash auto suspend/resume feature
|
|
CONFIG_SPI_FLASH_AUTO_SUSPEND=y
|
|
CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND=y
|
|
|
|
# Enable FreeRTOS in Flash feature
|
|
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
|
|
CONFIG_FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH=y
|