2023-11-22 17:27:43 +08:00
|
|
|
menu "ESP-Driver:UART Configurations"
|
2023-08-29 12:25:05 +08:00
|
|
|
|
|
|
|
|
config UART_ISR_IN_IRAM
|
|
|
|
|
bool "Place UART ISR function into IRAM"
|
|
|
|
|
depends on !RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH
|
2023-07-19 12:28:39 +02:00
|
|
|
select VFS_SELECT_IN_RAM if VFS_SUPPORT_SELECT
|
2023-08-29 12:25:05 +08:00
|
|
|
default n
|
|
|
|
|
help
|
|
|
|
|
If this option is not selected, UART interrupt will be disabled for a long time and
|
|
|
|
|
may cause data lost when doing spi flash operation.
|
|
|
|
|
|
2023-11-22 17:27:43 +08:00
|
|
|
endmenu
|