Skip to content

TexasInstruments/simplelink-prop_rf-examples

Repository files navigation

SimpleLink Proprietary RF (Prop RF) Examples

This repository contains the prop_rf examples for TI devices supported by the SimpleLink Low Power F2 and F3 SDKs. To learn which devices are supported by each SDK, refer to the SDK Device Association section.

Repository Layout

The examples/ directory contains the same prop_rf examples provided in those SDKs, in the same directory structure.

The SimpleLink Low Power F2 and F3 SDKs are provided as Git submodules in their respective subdirectories. If you're only interested in devices supported by the F3 SDK, you will only need to initialize and update the F3 SDK submodule.

As a quick reference, you can initialize and update a single Git submodule in one step like this:

# To initialize and update the F2 SDK
.../simplelink-prop_rf-examples$ git submodule update --init cc13xx_cc26xx_sdk

# To initialize and update the F3 SDK
.../simplelink-prop_rf-examples$ git submodule update --init simplelink-lowpower-f3-sdk

Alternatively you can initialize/update all submodules when cloning a repo with git clone --recurse-submodules {repo-ref}. See Git documentation for details.

Once initialized and updated, you can refer to each SDK's README.md and Release Notes for details on how to download its dependencies, and build its libraries.

Note, the links above are to online copies of the latest SDK READMEs. They are useful for online readers, but be sure to consult the SDK submodule's actual README.md after cloning, checking out your branch/tag, and updating your submodule, as details may change from release to release.

Setup Instructions

Build SDK Libraries

Each time you update an SDK submodule, you will need to build its libraries. This process can vary between the different SDKs, so refer to each SDK's README.md for specifics, but generally you will need to edit the imports.mak file at the top, then run make.

Note that sometimes the dependencies can vary from SDK to SDK. For example, if you've been using the F2 SDK and SysConfig version X, and want to start using the F3 SDK, it may require a newer SysConfig version. So, again, be sure to refer to each SDK's README.md and Release Notes.

Often newer versions of dependencies are compatible, so you can use newer-and-compatible versions than the SDK was validated against. But each SDK does have its own imports.mak so you can specify different dependency versions for each SDK if needed.

Build Examples

After building the SDK libraries, you can build the prop_rf examples. The examples support a few ways to build:

Build Examples From Command Line

Remember, before building the examples, you must build the SDK libraries!

To build a prop_rf example from the command line using GNU make, change into the appropriate example's directory (e.g. {rtos}/{board}/prop_rf/{example}/{rtos}/{toolchain}), then run make.

.../simplelink-prop_rf-examples$ cd examples/rtos/CC1352R1_LAUNCHXL/prop_rf/rfCarrierWave/freertos/ticlang/
.../ticlang$ make

Note, you can also clean the example with make clean.

Build Examples From CCS

Remember, before building the examples, you must build the SDK libraries!

The examples also include TI Code Composer Studio (CCS) project support, enabling them to be imported into, and built by, CCS.

Before importing the example, the SDK(s) location must be registered with CCS:

  1. Preferences->Code Composer Studio->Products
  2. Select Add...
  3. Navigate to the SDK submodule location
  4. Select Open

Repeat for each SDK you will be using. This registers the SDK with CCS. Successful registration of an SDK will show it in the "Discovered Products" list:

CCS Add Products Dialog

If using FreeRTOS, its location must also be configured in CCS:

  1. Preferences->Code Composer Studio->Build->Environment
  2. Select Add...
  3. Add the variable name FREERTOS_INSTALL_DIR
  4. Assign it to the absolute path of your installation of FreeRTOS

CCS FREERTOS_INSTALL_DIR Variable Assignment

Now you can import an example!

  1. Project->Import CCS Project...
  2. Select search-directory->Browse...
  3. Navigate to a directory within your clone of the example repo to search for examples and Select Folder
  4. Select the example(s) you wish to import and press Finish

Import CCS Projects Dialog

Build Examples from IAR

Remember, before building the examples, you must build the SDK libraries!

Follow the instructions in your respective SDK's Quick Start Guide:

Troubleshooting

When building on *nix platform (Linux/Mac) the library build may fail with an error similar to:

error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: Unsupported triple for mach-o cpu type: thumbv6m-ti-none-eabi

To fix, make sure the arm version of ranlib is in the path before the OS version of ranlib located in /usr/bin. Simply set the location of the gcc ARM ranlib ahead in the shell's path. Example:

$ export `PATH`=/Users/username/ti/gcc_arm_none_eabi_9_2_1/arm-none-eabi/bin:$PATH

SDK Association

Click the links below to find the devices supported by each SDK.