|
| 1 | +# Matter CC1352 CC2652 Shell Application |
| 2 | + |
| 3 | +A [chip-shell](../README.md) project on the Texas Instruments CC13X2_26X2 family |
| 4 | +of Wireless MCUs. |
| 5 | + |
| 6 | +## Building |
| 7 | + |
| 8 | +### Preparation |
| 9 | + |
| 10 | +Some initial setup is necessary for preparing the build environment. This |
| 11 | +section will need to be done when migrating to new versions of the SDK. This |
| 12 | +guide assumes that the environment is linux based, and recommends Ubuntu 20.04. |
| 13 | + |
| 14 | +- Download and install [SysConfig][sysconfig] ([recommended |
| 15 | + version][sysconfig_recommended]). This can be done simply with the following |
| 16 | + commands. |
| 17 | + |
| 18 | + ``` |
| 19 | + $ cd ~ |
| 20 | + $ wget https://software-dl.ti.com/ccs/esd/sysconfig/sysconfig-1.11.0_2225-setup.run |
| 21 | + $ chmod +x sysconfig-1.11.0_2225-setup.run |
| 22 | + $ ./sysconfig-1.11.0_2225-setup.run |
| 23 | + ``` |
| 24 | +
|
| 25 | +- Run the bootstrap script to setup the build environment. |
| 26 | +
|
| 27 | + ``` |
| 28 | + $ cd ~/connectedhomeip |
| 29 | + $ source ./scripts/bootstrap.sh |
| 30 | +
|
| 31 | + ``` |
| 32 | +
|
| 33 | +### Compilation |
| 34 | +
|
| 35 | +It is necessary to activate the environment in every new shell. Then run GN and |
| 36 | +Ninja to build the executable. |
| 37 | +
|
| 38 | +- Activate the build environment with the repository activate script. |
| 39 | +
|
| 40 | + ``` |
| 41 | + $ cd ~/connectedhomeip |
| 42 | + $ source ./scripts/activate.sh |
| 43 | +
|
| 44 | + ``` |
| 45 | +
|
| 46 | +- Run the build to produce a default executable. By default on Linux both the |
| 47 | + TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's |
| 48 | + home directory, and you must provide the absolute path to them. For example |
| 49 | + `/home/username/ti/sysconfig_1.11.0`. On Windows the default directory is |
| 50 | + `C:\ti`. Take note of this install path, as it will be used in the next |
| 51 | + step. |
| 52 | +
|
| 53 | + ``` |
| 54 | + $ cd ~/connectedhomeip/examples/all-clusters-app/cc13x2x7_26x2x7 |
| 55 | + $ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.11.0\"" |
| 56 | + $ ninja -C out/debug |
| 57 | +
|
| 58 | + ``` |
| 59 | +
|
| 60 | +## Programming |
| 61 | +
|
| 62 | +Loading the built image onto a LaunchPad is supported through two methods; |
| 63 | +Uniflash and Code Composer Studio (CCS). UniFlash can be used to load the image. |
| 64 | +Code Composer Studio can be used to load the image and debug the source code. |
| 65 | +
|
| 66 | +### Code Composer Studio |
| 67 | +
|
| 68 | +Programming with CCS will allow for a full debug environment within the IDE. |
| 69 | +This is accomplished by creating a target connection to the XDS110 debugger and |
| 70 | +starting a project-less debug session. The CCS IDE will attempt to find the |
| 71 | +source files on the local machine based on the debug information embedded within |
| 72 | +the ELF. CCS may prompt you to find the source code if the image was built on |
| 73 | +another machine or the source code is located in a different location than is |
| 74 | +recorded within the ELF. |
| 75 | +
|
| 76 | +Download and install [Code Composer Studio][ccs]. |
| 77 | +
|
| 78 | +First open CCS and create a new workspace. |
| 79 | +
|
| 80 | +Create a target connection (sometimes called the CCXML) for your target SoC and |
| 81 | +debugger as described in the [Manual Method][ccs_manual_method] section of the |
| 82 | +CCS User's Guide. |
| 83 | +
|
| 84 | +Next initiate a project-less debug session as described in the [Manual |
| 85 | +Launch][ccs_manual_launch] section of the CCS User's Guide. |
| 86 | +
|
| 87 | +CCS should switch to the debug view described in the [After |
| 88 | +Launch][ccs_after_launch] section of the User's Guide. The SoC core will likely |
| 89 | +be disconnected and symbols will not be loaded. Connect to the core as described |
| 90 | +in the [Debug View][ccs_debug_view] section of the User's Guide. Once the core |
| 91 | +is connected, use the `Load` button on the toolbar to load the ELF image. |
| 92 | +
|
| 93 | +Note that the default configuration of the CCXML uses 2-wire cJTAG instead of |
| 94 | +the full 4-wire JTAG connection to match the default jumper configuration of the |
| 95 | +LaunchPad. |
| 96 | +
|
| 97 | +### UniFlash |
| 98 | +
|
| 99 | +Uniflash is Texas Instrument's uniform programming tool for embedded processors. |
| 100 | +This will allow you to erase, flash, and inspect the SoC without setting up a |
| 101 | +debugging environment. |
| 102 | +
|
| 103 | +Download and install [UniFlash][uniflash]. |
| 104 | +
|
| 105 | +First open UniFlash. Debug probes connected to the computer will usually be |
| 106 | +displayed under the Detected Devices due to the automatic device detection |
| 107 | +feature. If your device does not show up in this view it my be disconnected, or |
| 108 | +you may have to create a New Configuration. If you already have a CCXML for your |
| 109 | +SoC and debug connection you can use that in the section at the bottom. Once |
| 110 | +your device is selected, click the `Start` button within the section to launch |
| 111 | +the session. |
| 112 | +
|
| 113 | +Select the ELF image to load on the device with the `Browse` button. This file |
| 114 | +is placed in the `out/debug` folder by this guide and ends with the `*.out` file |
| 115 | +extension. |
| 116 | +
|
| 117 | +Finally click the `Load Image` button to load the executable image onto the |
| 118 | +device. You should be able to see the log output over the XDS110 User UART. |
| 119 | +
|
| 120 | +Note that programming the device through JTAG sets the Halt-in-Boot flag and may |
| 121 | +cause issues when performing a software reset. This flag can be reset by |
| 122 | +power-cycling the LaunchPad. |
| 123 | +
|
| 124 | +## Running the Example |
| 125 | +
|
| 126 | +By default the log output will be sent to the Application/User UART. Open a |
| 127 | +terminal emulator to that port to see the output with the following options: |
| 128 | +
|
| 129 | +| Parameter | Value | |
| 130 | +| ------------ | -------- | |
| 131 | +| Speed (baud) | `115200` | |
| 132 | +| Data bits | `8` | |
| 133 | +| Stop bits | `1` | |
| 134 | +| Parity | `None` | |
| 135 | +| Flow control | `None` | |
| 136 | +
|
| 137 | +## Running the Example |
| 138 | +
|
| 139 | +Once a device has been flashed with this example, it can now join and operate in |
| 140 | +an existing Thread network. The following sections assume that a Thread network |
| 141 | +is already active, and has at least one [OpenThread Border |
| 142 | +Router][ot_border_router_setup]. |
| 143 | +
|
| 144 | +For insight into what other components are needed to run this example, please |
| 145 | +refer to our [Matter Getting Started Guide][matter-e2e-faq]. |
| 146 | +
|
| 147 | +For help with the shell itself, refer to the |
| 148 | +[shell example README](../README.md). |
| 149 | +
|
| 150 | +## TI Support |
| 151 | +
|
| 152 | +For technical support, please consider creating a post on TI's [E2E forum][e2e]. |
| 153 | +Additionally, we welcome any feedback. |
| 154 | +
|
| 155 | +[ccs]: https://www.ti.com/tool/CCSTUDIO |
| 156 | +[ccs_after_launch]: |
| 157 | + https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#after-launch |
| 158 | +[ccs_debug_view]: |
| 159 | + https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#debug-view |
| 160 | +[ccs_manual_launch]: |
| 161 | + https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#manual-launch |
| 162 | +[ccs_manual_method]: |
| 163 | + https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html?configuration#manual-method |
| 164 | +[e2e]: https://e2e.ti.com/support/wireless-connectivity/zigbee-and-thread |
| 165 | +[sysconfig]: https://www.ti.com/tool/SYSCONFIG |
| 166 | +[sysconfig_recommended]: |
| 167 | + https://software-dl.ti.com/ccs/esd/sysconfig/sysconfig-1.10.0_2163-setup.run |
| 168 | +[ti_cc13x2_26x2_r7_matter_request]: https://ti.com/chip_sdk |
| 169 | +[uniflash]: https://www.ti.com/tool/download/UNIFLASH |
0 commit comments