Part Number: MSP430FR5994
Tool/software: Code Composer Studio
Hi,
I'm developing a application and wanted to rename the default FRAM in the linker command to a user defined one. So changing
MEMORY
{
..
FRAM : origin = 0x4000, length = 0xBF80
}
to
MEMORY
{
..
//FRAM: origin = 0x4000, length = 0x2 (only works with this commented out)
APP_FRAM : origin = 0x4002, length = 0x7F7E
}
displayed the following error message
Description Resource Path Location Type
DEFAULT memory range overlaps existing memory range APP_FRAM DEFAULT memory range overlaps existing memory range APP_FRAM cxr_16k_edition_uart_master C/C++ Problem
My question is what is this DEFAULT primitive ( shows up as 16 bytes in the memory view) and is there a way to get around this other than declaring a FRAM section at location 0x4000.