Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust configuration of TI_CC1352R1_LAUNCHXL #1727

Merged
merged 1 commit into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* These arguments were used when this file was generated. They will be automatically applied on subsequent loads
* via the GUI or CLI. Run CLI with '--help' for additional information on how to override these arguments.
* @cliArgs --board "/ti/boards/CC1352R1_LAUNCHXL" --product "simplelink_cc13x2_26x2_sdk@4.20.01.04"
* @versions {"data":"2020052512","timestamp":"2020052512","tool":"1.5.0+1397","templates":"2020052512"}
* @versions {"data":"2020090214","timestamp":"2020090214","tool":"1.6.0+1543","templates":"2020090214"}
*/

/**
Expand Down Expand Up @@ -37,8 +37,9 @@ easylink.EasyLink_Phy_5kbpsSlLr = true;
easylink.defaultPhy = "EasyLink_Phy_5kbpsSlLr";
easylink.EasyLink_Phy_50kbps2gfsk = true;
easylink.EasyLink_Phy_200kbps2gfsk = true;
easylink.EasyLink_Phy_Custom = false;
easylink.addrFilters = "";
easylink.enableAddrFilter = false;
easylink.radioConfigEasylinkPhyCustom.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param0";
easylink.radioConfigEasylinkPhy5kbpssllr.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param1";
easylink.radioConfigEasylinkPhy50kbps2gfsk.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param2";
easylink.radioConfigEasylinkPhy200kbps2gfsk.codeExportConfig.$name = "ti_devices_radioconfig_code_export_param3";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,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, 29}, // 0x00000000 nanoCLR
{BlockRange_BLOCKTYPE_DEPLOYMENT, 30, 42}, // 0x0003C000 deployment
{BlockRange_BLOCKTYPE_CODE, 0, 30}, // 0x00000000 nanoCLR
{BlockRange_BLOCKTYPE_DEPLOYMENT, 31, 42}, // 0x0003E000 deployment
};

const BlockRegionInfo BlockRegions[] = {{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
* Default Linker script for the Texas Instruments CC1352R1
*/

STACKSIZE = 2048;
STACKSIZE = 3072;
HEAPSIZE = 0x3000; /* Size of heap buffer used by HeapMem */

MEMORY
{
/* original flash LENGTH was 0x00057fa8 */
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x0003C000
FLASH (RX) : ORIGIN = 0x00000000, LENGTH = 0x0003E000
/*
* Customer Configuration Area and Bootloader Backdoor configuration in
* flash, 40 bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

/////////////////////////////////////
#if defined(DEBUG)
#define MANAGED_HEAP_SIZE (30*1024)
#define MANAGED_HEAP_SIZE (29*1024)
#else
#define MANAGED_HEAP_SIZE (37*1024)
#endif
Expand Down