mbed OS V5 BLE UARTService to USB/UART PassThru Example
Moxon Design : mbed OS V5 BLE UartService to USBUART passthru example
This example will advertise on BLE as "BLART" and allow BLE serial echo to the USB Serial port. Open a Bluetooth terminal application, like Nordic "nRF UART" and connect to "BLART", open a terminal emulator program, like "TeraTERM", and connect to the USB COM Port (like JLink CDC UART Port), and echo characters back and forth. Set UART_LoopBack = 1 for local loopback (e.g. BLE to BLE, USB-UART to USB-UART)
README.md
- Committer:
- moxondesign
- Date:
- 2017-04-29
- Revision:
- 2:3e203cc2a88f
- Parent:
- 0:2d1d68397ff7
File content as of revision 2:3e203cc2a88f:
# Moxon Design mbed OS V5 BLE UartService to USBUART passthru This guide reviews the steps required to get BLU UART working on an mbed OS platform. Please install [mbed CLI](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli). ## Import the example application From the command-line, import the example: ``` mbed import MoxDes-mbed-os-BLE-USB-passthru cd MoxDes-mbed-os-BLE-USB-passthru ``` ### Now compile Invoke `mbed compile`, and specify the name of your platform and your favorite toolchain (`GCC_ARM`, `ARM`, `IAR`). For example, for the ARM Compiler 5: ``` mbed compile -m nRF42-DK -t ARM ``` ### Program your board 1. Connect your mbed device to the computer over USB. 1. Copy the binary file to the mbed device. 1. Press the reset button to start the program. The BLE device should advertise as "BLART" (BLe-uART) ## Export the project to Keil MDK, and debug your application From the command-line, run the following command: ``` mbed export -m nRF42-DK -i uvision ``` To debug the application: 1. Start uVision. 1. Import the uVision project generated earlier. 1. Compile your application, and generate an `.axf` file. 1. Make sure uVision is configured to debug over CMSIS-DAP (From the Project menu > Options for Target '...' > Debug tab > Use CMSIS-DAP Debugger). 1. Set breakpoints, and start a debug session. ![Image of uVision](img/uvision.png) ## Troubleshooting 1. Make sure `mbed-cli` is working correctly and its version is `>1.0.0` ``` mbed --version ``` If not, you can update it: ``` pip install mbed-cli --upgrade ``` 2. If using Keil MDK, make sure you have a license installed. [MDK-Lite](http://www.keil.com/arm/mdk.asp) has a 32 KB restriction on code size.