Skip to content

Latest commit

 

History

History
82 lines (62 loc) · 3.59 KB

File metadata and controls

82 lines (62 loc) · 3.59 KB

Purpose / Scope

This purpose of this example is to demonstrate a UART to BLE bridge using TI's proprietary Serial Port Profile (SPP). The project is based on the UART to Bluetooth® Low Energy (BLE) Bridge Reference Design, and has been enhanced to include Bluetooth 5.0 features such as LE 2M PHY.

Prerequisites

Hardware Requirements

Before running the demo, the user will need the following components:

Firmware Requirements

Serial Port Service (SPS)

The serial port service is made to implement a bi-directional UART connection over the BLE protocol. The service uses a 128 bit UUID: F000C0E0-0451-4000-B000-00000000-0000. SPS contains three characteristics, they are listed below.

Characteristic UUID
Data F000C0E1-0451-4000-B000-00000000-0000
Status F000C0E2-0451-4000-B000-00000000-0000
Config F000C0E3-0451-4000-B000-00000000-0000

For more information about the Serial Port Profile (SPP), please see the TI-Design Guide or the SPS Spec Document.

Running the Demo

Running the demo is as simple and compiling and loading the code, then hooking up to your PC to send a receive data over UART. Please follow the steps below:

  1. Compile and load the code
  • Build LaunchPad #1 with the ble5_spp_ble_client_cc2640r2lp_stack_library FlashROM_Library project
  • Build and load LaunchPad #1 with the ble5_spp_ble_client_cc2640r2lp_app FlashROM_StackLibrary project
  • Build LaunchPad #2 with the ble5_spp_ble_server_cc2640r2lp_stack_library FlashROM_Library project
  • Build and load LaunchPad #2 with the ble5_spp_ble_server_cc2640r2lp_app FlashROM_StackLibrary project
  1. Connect the Boards to the PC terminal
  • You can use the terminal to send data from your PC to the LaunchPad, and also display the info sent from one device to another.
  • You will need to open two instances of the terminal program to, one to communicate with each board.
  • Follow the steps from our FAQ to connect to the LaunchPad boards
  • Please note that the SPP project uses the default baud rate of 115200
  1. Power the boards individually and verify they are initialized
  • The client will blink the green LED twice at initialzation. It will also display Auto connecting... on the terminal
  • The server will blink the red LED once at initialization
  • The client will auto connect to the server using a hardcoded BD_ADDR
  • Upon connecting the client will display: Discovering services...Found Serial Port Service...Data Char Found...Notification enabled...
  • At this point you can type into either terminal window and watch it being echoed to the other terminal via BLE.

In addition to the UART display interface, the project uses the following buttons:

Key Description
BTN-1 Send an ASCII character over the air
BTN-2 Toggle between 2Mbps and 1Mbps PHY

References