Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 3.58 KB

File metadata and controls

74 lines (50 loc) · 3.58 KB

Frequently Asked Questions


What if I installed the SimpleLink CC26x2 SDK at a non default location (e.g. Not at C:\ti\)?

All projects reference files from the BLE stack using environment variables, you can change this in your IDE's project files.

CCS

No changes to the project is necessary. You just need to ensure that Code Composer Studio was able to discover the SimpleLink CC26x2 SDK in the available RTSC Products tab. See the BLE5-Stack User's Guide for more details.

IAR

  1. Navigate to the sample project directory within the repo and open the .custom_argvars file.
  2. Update the value of SIMPLELINK_CORE_SDK_INSTALL_DIR to point to your custom installation directory where you installed the SimpleLink CC26x2 SDK.

How should I keep my application based on a TI BLE-Stack SDK under version control?

There are many ways to solve and address this issue. We are merely presenting one suggested workflow out of the many combinations that exist.

Since this is an advanced topic, it has its own page dedicated to it. You can read more here: Version Control


How can I setup my toolchain for use with the ble_examples repo?

CCS

For BLE5-Stack examples, see the Using BLE5-Stack Projects with CCS section in the BLE5-Stack Quick Start Guide

IAR

For BLE5-Stack examples, see the Using BLE5-Stack Projects with IAR section in the BLE5-Stack Quick Start Guide


I am using a LaunchPad device, how can I view display data?

LaunchPad projects are already set up to use the tidriver Display. For more information about the Display driver please see the Display.h driver documentation in the SimpleLink CC26x2 SDK (docs/tidrivers/tidriversAPI.html)

To setup your PC to receive this data please follow the steps below:

  1. Install PuTTY or another serial terminal emulator

  2. Use the Windows Device Manager (Start → Run → mmc devmgmt.msc → Ok) to determine which COM port you should connect to:

    Device Manager

    • Note the COM port number of the XDS110 Class Application/User UART listed.
  3. Configure putty as a serial console with 115200 8N1.

  4. Fill in the Serial Line field with the COM port from above.

  5. When configured correctly, the program should look as below:

Main Screen Serial Screen
Putty Main Putty serial

You may need to unplug/replug your LaunchPad and restart PuTTY if you do not see any output.