mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
IRAM section didn't contain sufficient padding for possible CPU instruction prefetch, ie instruction fetch could happen in DRAM section which is prohibited by the Memprot module. This is fixed by adding 16B to the end of IRAM section in LD script (C3 CPU prefetch buffer depth is 4 words) Closes IDF-3554 * fix