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.

AWR1843BOOST: Placing .bss or .data sections in TCMA

Part Number: AWR1843BOOST

Team,
My customer who develops the sensor products based on lab007 suffers from the link error. The link error occurred due to insufficient space in TCMB (192KB).
They are considering reducing the use of external variables but there is still room in TCMA (512KB). So they want to modifying the “r4f_linker.cmd” file to place .bss or .data sections in TCMA (512KB).

SECTIONS{
    .intvecs : {} > VECTORS
    .text    : {} > PROG_RAM
    .const   : {} > PROG_RAM
    .cinit   : {} > PROG_RAM
    .pinit   : {} > PROG_RAM 
    .bss     : {} > DATA_RAM   <--- PROG_RAM
    .data    : {} > DATA_RAM
    .stack   : {} > DATA_RAM
}

Are there any concerns with placing the .bss or .data in TCMA?

Could I have your comment on this?
Thank you for your support.
Regards,
Nonaka