This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C129XNCZAD: TM4C1292

Part Number: TM4C129XNCZAD

hi,

I can't flash the TM4C129XNCZAD after using #pragma CODE_SECTION(".fastRAM") for UART ISR?

any help?

/* Section allocation in memory */

SECTIONS
{
    .intvecs:   > INTERNAL_FLASH_START_ADDR
    .text   :   > FLASH
    .const  :   > FLASH
    .cinit  :   > FLASH
    .pinit  :   > FLASH
    .init_array : > FLASH

    .vtable :   > INTERNAL_RAM_START_ADDR
    .data   :   > SRAM
    .bss    :   > SRAM
    .sysmem :   > SRAM
    .stack  :   > SRAM
    .fastRAM :   > SRAM
}