Skip to content

Commit 840714d

Browse files
committed
Adjust storage block size for TI_CC1352R1_LAUNCHXL
1 parent 6618434 commit 840714d

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.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, 22}, // 0x00000000 nanoCLR
14-
{BlockRange_BLOCKTYPE_DEPLOYMENT, 23, 42}, // 0x0002E000 deployment
13+
{BlockRange_BLOCKTYPE_CODE, 0, 25}, // 0x00000000 nanoCLR
14+
{BlockRange_BLOCKTYPE_DEPLOYMENT, 26, 42}, // 0x00034000 deployment
1515
};
1616

1717
const BlockRegionInfo BlockRegions[] = {{

targets/TI_SimpleLink/TI_CC1352R1_LAUNCHXL/nanoCLR/CC13x2_26x2_CLR.ld

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

0 commit comments

Comments
 (0)