mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
9b6d4c4015
If CONFIG_UART_ISR_IN_IRAM is on, which means user hope the uart interrupt can still be serviced even when cache is diabled (e.g. writing to flash). In that case, the driver should make sure to put the all related objects into SRAM, avoid putting them in the PSRAM. Closes https://github.com/espressif/esp-idf/issues/7044 Closes https://github.com/espressif/esp-idf/pull/7355