This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC1314R10: CC1314R106T0RGZ SysConfig and Wi-SUN support

Part Number: CC1314R10
Other Parts Discussed in Thread: SYSCONFIG

Tool/software:

Hi.

We have a demand to use the Wi-SUN STACK with the CC1314R106T0RGZ. However, from what we have seen, SysConfig currently only supports the CC1314R106T0RSK board. Additionally, while there is a board called "CC1314R10 RGZ on the CC1312R1 RGZ LaunchPad", it does not support the Wi-SUN STACK.

Any insights on the compatibility of the CC1314R106T0RGZ board with SysConfig and the Wi-SUN STACK would be greatly appreciated.

Best regards,

Mauricio.

  • Hi Mauricio,

    Thank you for reporting, I will file a bug ticket for this.

    In the mean while, please try these code changes before you import the project to CCS:

    1. Open source/ti/ti_wisunfan/.meta/ti_wisunfan.component.js. Add a new line 47: "CC1314R10RGZ",

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    const supportedDevices = [
    "CC1312R1F3RGZ",
    "CC1312PSIP",
    "CC1352P1F3RGZ",
    "CC1352R1F3RGZ",
    "CC1312R7RGZ",
    "CC1352P7RGZ",
    "CC1314R10RSK",
    "CC1314R10RGZ",
    "CC1354R10RGZ",
    "CC1354P10RSK",
    "CC1354P10RGZ",
    ];
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    2. Open source/ti/ti_wisunfan/.meta/ti_wisunfan_rf_config.syscfg.js and add another else if case in the getRfDesignOptions() function, e.g. line 237:

    Fullscreen
    1
    2
    3
    4
    else if(deviceId === "CC1314R10RGZ")
    {
    newRfDesignOptions = [{name: "LP_CC1314R10_RGZ"}];
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    3. Now you can follow the process in the migration guide (https://dev.ti.com/tirex/explore/content/simplelink_cc13xx_cc26xx_sdk_7_41_00_17/docs/ti_wisunfan/html/cc13xx_cc26xx/software-on-cc13x4-26x4-rgz-devices.html )

    Cheers,

    Marie H