- Update debug block storage config.
- Update managed heap config.

***NO_CI***
This commit is contained in:
josesimoes 2020-10-07 11:52:07 +01:00
Родитель 82bda0ec5b
Коммит dafac49334
3 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -11,8 +11,8 @@ const BlockRange BlockRange1[] =
{
// the last block is reserved for Customer Configuration Area and Bootloader Backdoor configuration
// so we don't take it into account for the map
{ BlockRange_BLOCKTYPE_CODE , 0 , 27 }, // 0x00000000 nanoCLR
{ BlockRange_BLOCKTYPE_DEPLOYMENT , 28 , 42 }, // 0x00038000 deployment
{ BlockRange_BLOCKTYPE_CODE , 0 , 30 }, // 0x00000000 nanoCLR
{ BlockRange_BLOCKTYPE_DEPLOYMENT , 31 , 42 }, // 0x0003E000 deployment
};
const BlockRegionInfo BlockRegions[] =

Просмотреть файл

@ -40,7 +40,7 @@ HEAPSIZE = 0x3000; /* Size of heap buffer used by HeapMem */
MEMORY
{
/* original flash LENGTH was 0x00057fa8 */
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x00038000
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x0003E000
/*
* Customer Configuration Area and Bootloader Backdoor configuration in
* flash, 40 bytes

Просмотреть файл

@ -36,7 +36,7 @@
/////////////////////////////////////
//////////////////////////////////////////////
#define OEMSYSTEMINFOSTRING "nanoCLR running @ @TI_BOARD@ built with TI SL CC13x2_26x2 SDK v3.20.00.68"
#define OEMSYSTEMINFOSTRING "nanoCLR running @ @TI_BOARD@"
#define TARGETNAMESTRING "@TI_BOARD@"
#define PLATFORMNAMESTRING "TI_SL_CC13x2"
//////////////////////////////////////////////
@ -49,7 +49,11 @@
//////////////////////////////////////////////
/////////////////////////////////////
#define MANAGED_HEAP_SIZE (35*1024)
#if defined(DEBUG)
#define MANAGED_HEAP_SIZE (30*1024)
#else
#define MANAGED_HEAP_SIZE (37*1024)
#endif
/////////////////////////////////////
/////////////////////////////////////