I know that there are two variant of the CPU with 128 kb and with 256 kb of memory. we use one of them with letter r1. it has 128 kb of memory.
and how much is the ROM in this type of cpu: 65 kb or less?
this is the IAR linker file, which string contains correct description of this cpu ?
and what is the memory region from 2000000 to 20003fff?
// Define a region for the on-chip SRAM.
// In project Define CC3200_ES_1_2_1 = 1 for CC3200 ES 1.21
// Define CC3200_ES_1_2_1 = 0 for CC3200 ES 1.32 onward
//
if (!isdefinedsymbol(CC3200_ES_1_2_1))
{
define region SRAM = mem:[from 0x20004000 to 0x2002FFFF];
}
else if(CC3200_ES_1_2_1)
{
define region SRAM = mem:[from 0x20000000 to 0x2002FFFF];
}
else
{
define region SRAM = mem:[from 0x20004000 to 0x2002FFFF];
}