rfWsnNodeExtFlashOadClient Example

Example Summary

The WSN Node example illustrates how to create a Wireless Sensor Network Node device which sends packets to a concentrator. This example is meant to be used with the WSN Concentrator example to form a one-to-many network where the nodes send messages to the concentrator.

This examples showcases the use of several Tasks, Semaphores, and Events to get sensor updates and send packets with acknowledgment from the concentrator. For the radio layer, this example uses the EasyLink API which provides an easy-to-use API for the most frequently used radio operations.

Peripherals Exercised

Resources & Jumper Settings

If you’re using an IDE (such as CCS or IAR), please refer to Board.html in your project directory for resources used and board-specific jumper settings. Otherwise, you can find Board.html in the directory <SDK_INSTALL_DIR>/source/ti/boards/<BOARD>.

Example Usage

The example also supports Over The Air Download (OAD), where new FW can be transferred from the concentrator to the node. There must be an OAD Server, which is included in the concentrator project, and an OAD client, which is included in the node project.

Performing an OAD Image Transfer

To be safe the external flash of the Concentrator should be wiped before running the example. To do this, program both LP boards with erase_extflash_cc13x0lp.hex. The program will flash the LEDs while erasing the external flash. Allow the application to run until the LEDs stop flashing indicating the external flash has been erased.

The FW to erase the external flash can be found in below location and should be loaded using Uniflash programmer: <SDK_DIR>/examples/rtos/CC1310_LAUNCHXL/easylink/hexfiles/offChipOad/ccs/erase_extflash_cc13x0lp.hex

The Concentrator OAD Server and Node OAD Client FW should each be loaded into a CC1310LP/CC1350LP using the Uniflash programmer:

Nodes   Value   SW    RSSI
*0x0b    0887    0    -080
 0xdb    1036    0    -079
 0x91    0940    0    -079
Action: Update available FW
Info: Available FW unknown

Use the node display to identify the corresponding node ID:

Node ID: 0x91
Node ADC Reading: 1196

The node OAD image can be loaded into the external flash of the Concentrator through the UART with the oad_write_bin.py script. The action must first be selected using BTN-2. Press BTN-2 until the Action is set to Update available FW, then press BTN-1 and BTN-2 simultaneously to execute the action.

When “Available FW” is selected the terminal will display:

    Waiting for Node FW update...

The UART terminal must be closed to free the COM port before the script is run. Then the python script can be run using the following command:

    python <SDK>/tools/easylink/oad/oad_write_bin.py /dev/ttyS28 <SDK_DIR>/examples/rtos/CC1310_LAUNCHXL/easylink/hexfiles/offChipOad/ccs/rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_app_v2.bin

After the download the UART terminal can be re-opened and the “Info” menu line will be updated to reflect the new FW available for OAD to a node.

The current FW version running on the node can be requested using the Send FW Ver Req action. This is done by pressing BTN-1 until the desired node is selected (indicated by the *), then pressing BTN-2 until the Action is set to Send FW Ver Req. To execute the action, press BTN-1 and BTN-2 simultaneously.

The next time the node sends data to the concentrator, the FW version of the selected node will appear in the Info section.

Nodes   Value   SW    RSSI
 0x0b    0887    0    -080
 0xdb    1036    0    -079
*0x91    0940    0    -079
Action: Send FW Ver Req
Info: Node 0x91 FW v1.0

The node FW can now be updated to the image stored on the external flash of the concentrator. Press BTN-1 until the desired node is selected, then press BTN-2 until the Action is set to Update node FW. To execute the action, press BTN-1 and BTN-2 simultaneously.

The next time the node sends data, the OAD sequence will begin. As the node requests each image block from the concentrator the Concentrator display is updated to show the progress of the image transfer.

Nodes   Value   SW    RSSI
 0x0b    0887    0    -080
 0xdb    1036    0    -079
*0x91    0940    0    -079
Action: Update node FW
Info: OAD Block 14 of 1089

The node display also updates to show the status of the image transfer.

Node ID: 0x91
Node ADC Reading: 3093
OAD Block: 14 of 1089
OAD Block Retries: 0

Once the OAD has completed, the concentrator will indicate that the transfer has finished with an OAD Complete status. The node will reset itself with a new node ID. If the device does not reset itself a manual reset may be necessary.

Generating OAD Images

For generating the images the following tools are required:

Creating the BIM Image

The BIM is generated from the SDK project: <SDK_DIR>/examples/rtos/CC1310_LAUNCHXL/easylink/bim_offchip/tirtos/ccs/bim_extflash_cc13x0lp_app.projectspec A prebuilt hex image is located in the SDK: <SDK_DIR>/examples/rtos/CC1310_LAUNCHXL/easylink/hexfiles/offChipOad/ccs/bim_extflash_cc13x0lp.hex

Note: When building examples for the CC1350STK Board

Creating the Application Image

To generate the application hex file, the project should be imported and built with the desired compiler. To change the FW version, update the following string in native_oad/oad_client.c

#define FW_VERSION "v1.0"

The OAD binary can be created from the application hex file using the OAD image tool found in the following location: <SDK_DIR>/tools/easylink/oad/oad_image_tool.py

To use the OAD image tool, execute the following command:

python oad_image_tool.py -t offchip -i app -v 0x0100 -m 0x1000 -ob rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_app_v1.bin rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_app_v1.hex

The following command-line arguments are used to build the image:

Creating the Production Image

The production image (binary) is the image that should be flashed directly to the LP.

First, the application image (hex) is the merged with the BIM (hex) to create the production image (hex).

python /usr/bin/hexmerge.py -o rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_all_v1.hex 
"--overlap=error" rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_app_v1.hex
bim_extflash_cc13x0lp.hex

The oad_image_tool creates an OAD image header that contains information used by the application and the BIM. Therefore, the oad_image_tool is used to generate an OAD production binary that contains the offchip BIM, OAD image header, and application for flashing to the device.

python oad_image_tool.py -t offchip -i production -v 0x0100 -m 0x1000 -ob
rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_all_v1.bin 
rfWsnNodeExtFlashOadClient_CC1310_LAUNCHXL_all_v1.hex

The production image type (-i) is used so the oad_image_tool can accurately calculate the CRC of the image.

Application Design Details

References