Skip to content

Commit ccf53ec

Browse files
committed
Increase size of CLR storage block (for debug build)
***NO_CI***
1 parent 361b3da commit ccf53ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

targets/TI_SimpleLink/TI_CC1352R1_LAUNCHXL/common/Device_BlockStorage-DEBUG.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
const BlockRange BlockRange1[] = {
1111
// the last block is reserved for Customer Configuration Area and Bootloader Backdoor configuration
1212
// so we don't take it into account for the map
13-
{BlockRange_BLOCKTYPE_CODE, 0, 31}, // 0x00000000 nanoCLR
14-
{BlockRange_BLOCKTYPE_DEPLOYMENT, 32, 42}, // 0x00041000 deployment
13+
{BlockRange_BLOCKTYPE_CODE, 0, 32}, // 0x00000000 nanoCLR
14+
{BlockRange_BLOCKTYPE_DEPLOYMENT, 33, 42}, // 0x00042000 deployment
1515
};
1616

1717
const BlockRegionInfo BlockRegions[] = {{

targets/TI_SimpleLink/TI_CC1352R1_LAUNCHXL/nanoCLR/CC13x2_26x2_CLR-DEBUG.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HEAPSIZE = 0x3000; /* Size of heap buffer used by HeapMem */
4040
MEMORY
4141
{
4242
/* original flash LENGTH was 0x00057fa8 */
43-
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x00041000
43+
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x00042000
4444
/*
4545
* Customer Configuration Area and Bootloader Backdoor configuration in
4646
* flash, 40 bytes

0 commit comments

Comments
 (0)