Skip to content

Commit 54a8d10

Browse files
authored
Adjust configuration of TI_CC1352R1_LAUNCHXL (#1727)
***NO_CI***
1 parent 0f58bdc commit 54a8d10

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

targets/TI-SimpleLink/TI_CC1352R1_LAUNCHXL/TI_CC1352R1_LAUNCHXL.syscfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* These arguments were used when this file was generated. They will be automatically applied on subsequent loads
33
* via the GUI or CLI. Run CLI with '--help' for additional information on how to override these arguments.
44
* @cliArgs --board "/ti/boards/CC1352R1_LAUNCHXL" --product "[email protected]"
5-
* @versions {"data":"2020052512","timestamp":"2020052512","tool":"1.5.0+1397","templates":"2020052512"}
5+
* @versions {"data":"2020090214","timestamp":"2020090214","tool":"1.6.0+1543","templates":"2020090214"}
66
*/
77

88
/**
@@ -37,8 +37,9 @@ easylink.EasyLink_Phy_5kbpsSlLr = true;
3737
easylink.defaultPhy = "EasyLink_Phy_5kbpsSlLr";
3838
easylink.EasyLink_Phy_50kbps2gfsk = true;
3939
easylink.EasyLink_Phy_200kbps2gfsk = true;
40+
easylink.EasyLink_Phy_Custom = false;
41+
easylink.addrFilters = "";
4042
easylink.enableAddrFilter = false;
41-
easylink.radioConfigEasylinkPhyCustom.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param0";
4243
easylink.radioConfigEasylinkPhy5kbpssllr.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param1";
4344
easylink.radioConfigEasylinkPhy50kbps2gfsk.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param2";
4445
easylink.radioConfigEasylinkPhy200kbps2gfsk.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param3";

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, 29}, // 0x00000000 nanoCLR
14-
{BlockRange_BLOCKTYPE_DEPLOYMENT, 30, 42}, // 0x0003C000 deployment
13+
{BlockRange_BLOCKTYPE_CODE, 0, 30}, // 0x00000000 nanoCLR
14+
{BlockRange_BLOCKTYPE_DEPLOYMENT, 31, 42}, // 0x0003E000 deployment
1515
};
1616

1717
const BlockRegionInfo BlockRegions[] = {{

targets/TI-SimpleLink/TI_CC1352R1_LAUNCHXL/nanoCLR/CC13x2_26x2_CLR-DEBUG.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
* Default Linker script for the Texas Instruments CC1352R1
3535
*/
3636

37-
STACKSIZE = 2048;
37+
STACKSIZE = 3072;
3838
HEAPSIZE = 0x3000; /* Size of heap buffer used by HeapMem */
3939

4040
MEMORY
4141
{
4242
/* original flash LENGTH was 0x00057fa8 */
43-
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x0003C000
43+
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x0003E000
4444
/*
4545
* Customer Configuration Area and Bootloader Backdoor configuration in
4646
* flash, 40 bytes

targets/TI-SimpleLink/TI_CC1352R1_LAUNCHXL/target_common.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
/////////////////////////////////////
5252
#if defined(DEBUG)
53-
#define MANAGED_HEAP_SIZE (30*1024)
53+
#define MANAGED_HEAP_SIZE (29*1024)
5454
#else
5555
#define MANAGED_HEAP_SIZE (37*1024)
5656
#endif

0 commit comments

Comments
 (0)