Objective
This lab exercise will have you configure/deploy a custom (private) Generic Attribute Profile (GATT) Service (Stopwatch Service) on a BM71, then interface it with a PIC24 MCU (running demo code) and test it using a dedicated Android Stopwatch App.
You will:
- Configure a custom “GATT Stopwatch Service” attribute table on a BM71 using the User Interface (UI) Configuration Tool.
- Create a BM71 "Configuration EEPROM table" for inclusion into the PIC24 project.
- Prepare the BM71 PICTail for use on the Explorer 16 board.
- Program the PIC24 MCU Stopwatch Demo Project.
- Interact with the Service using the Stopwatch App.
The PIC24 demo code provided in this lab implements the BM71 Configuration EEPROM programming algorithm, simplifying the deployment of static/default BM71 parameters in the final application.
After creating a BM71 UI Configuration text file, you will run the BM7x EEPROM Table Utility to convert this file into an EEPROM table array that is #included in the PIC24 MPLAB® project.
On reset, the PIC24 demo code reads the configuration memory of the BM71, and if it differs from the table, re-programs all BM71 configuration EEPROM memory contents with the settings in the table.
Materials
Hardware Tools
- BM71 PICtail™
- Explorer 16 Development Board
- MPLAB ICD 3 In-Circuit Debugger
- Android Smartphone (Lab tested with BLU Advance 5.0).
- OS version 4.4 or higher
- BT 4.0 or higher hardware
Software Tools
Exercise Files
Before You Begin:
- Install MPLAB X IDE and XC16 Compiler.
- Install the MCP2200 USB driver.
- Download the BM7x EEPROM Table Utility using the link above.
- Download/extract the UI Configuration Tool as well as the Manual Pattern Test Tool to your PC using the links above.
- Download/extract the Explorer 16 BM7x Pictail Stopwatch Project to your C:\ folder.
Connection Diagram
Overview
Generic Access Profile (GAP) Peripheral Device (GATT Server)
The Explorer 16 Board with the BM71 advertises a Stopwatch Service, which provides stopwatch data to a smartphone, as well as providing a control point to remotely trigger the stopwatch to start counting.
GAP Central Device (GATT Client)
An Android smartphone running the Stopwatch demo app, scans, filters, and connects to a specific stopwatch. It also can trigger the stopwatch to begin counting.
Procedure
GATT Server Configuration
In this sequence, you will configure the BM71 static parameters for this application, including creating the GATT Table for the Stopwatch Service.
1
Verify Module Firmware Version
This demo requires BM71 module firmware version 1.06. Verify the firmware version, and if necessary, program v1.06 firmware into the module.
2
Load UI Configuration
Launch the UI Configuration Tool (found in the "Software Tools" section above) and load in the Default BM71 UI Config File (IS1871SF_102_BLEDK3_UI v100.132(BM71) default.txt), which you obtained from the "Exercise Files" section of this page.
Default BM71 Configuration Files are located in the root folder where the UI Config Tool is installed.
4
Change the Device Name, UART Setting, Operation Mode
On the System Setup tab, in the Device Information pane, set the Name Fragment to a unique value. This identifier will become the GAP Service Device Name characteristic.
Recommend a maximum length of eight characters.
If your name is longer than eight characters, you will see an error message when filling in the balance of your ADV_IND payload (remember, we only have 31 bytes of payload!)
On the System Setup tab, in the Uart Setting pane, select Enable for UART RX_IND pin function.
In the Operation Mode Setting pane, set the Operation Pattern to Manual Pattern as shown:
Click Next to proceed to the System Setup2 Tab
6
Advertising Interval (ADV_IND Packets)
On the LE Mode Setup tab, in the LE Advertising Setting pane, change the default LE Fast Advertising Interval to 100 mS (0x00A0). Enter 00A0 as shown:
LE Reduced Power Advertising Interval parameter (not shown above) is only used in Auto Pattern (Transparent Universal Asynchronous Receiver Transmitter (UART)) mode operation. You do not need to modify this.
BLE ADV_IND type advertising packet is a generic advertisement, meaning that it is undirected and is connectable. This would be the initial default advertising type for a new product, before it has paired with a smartphone.
7
Advertising Payload (ADV_IND Packets)
On the LE Mode Setup tab, in the Advertising Data Setting pane, add the Stopwatch Service UUID (0x8E9598AC066211E6B5123E1D05DEFE78) to the ADV_IND payload as shown:
The Stopwatch App uses the Service Universally Unique Identifier (UUID) form the ADV_IND packets to filter out other devices, only displaying Stopwatch Devices on a scan.
Click Next to proceed to the GATT Service Table tab.
GATT Stopwatch Service
You will now create the Stopwatch Service attribute table having the following characteristics and features:
Stopwatch Service:
UUID: 0x8E9598AC066211E6B5123E1D05DEFE78
Stopwatch Control Point Characteristic:
UUID: 0x8E959DE8066211E6B5123E1D05DEFE78
Value:0x00 (1 byte)
Value Permissions: Write/Write without response
Stopwatch Status Characteristic:
UUID: 0x8E959FE6066211E6B5123E1D05DEFE78
Value:0x0000000000 (5 bytes)
Value Permissions: Read/Notify
Requires Client Characteristic Configuration Descriptor (CCCD) (UUID: 0x2902) with value 0x0000
Note:
- These UUIDs are "version 1" types, and were generated using www.uuidgenerator.net UUID generator.
- Attribute handle values will be automatically assigned by the UI Configuration Tool, starting at 0x8000.
- The characteristics need to be added to the service table in the order shown below, so the handle values match those embedded in the PIC24 demo code.
8
Create Custom GATT Service Table
Scroll down to the Add-on Service pane, and from the Service List, drag/drop Others into the Add-on Service Table view as shown:
You should see a dialog box prompting you to define a new private service. Type/Copy/Paste the Stopwatch Service UUID value (0x8E9598AC066211E6B5123E1D05DEFE78) into the UUID field as shown:
Click Next to enter the first characteristic.
10
Add Stopwatch Status Characteristic
Under Add-On Service Table, add the next characteristic by right-clicking on the Service UUID and selecting Add Characteristic as shown:
Enter the Hex UUID value (0x8E959FE6066211E6B5123E1D05DEFE78), Permissions (Properties), and Characteristic Value (0x0000000000) for the Stopwatch Status characteristic (defined above), as shown:
Click OK.
11
Add Client Characteristic Configuration Descriptor (CCCD) Attribute to Stopwatch Status Characteristic
Under Add-On Service Table, expand all the + tabs to see the completed GATT Service Table. Right-click on the characteristic handle 0x8003. We need to add a descriptor attribute (CCCD, type 0x2902) to this characteristic:
Define a CCCD by entering its Hex UUID value (0x2902) and initial value of 0x0000 as shown:
Click OK.
Create BM71 Config EEPROM Table Array
The PIC24 demonstration code simplifies deployment of BM71 configuration settings by in-circuit-programming the module's configuration EEPROM memory. In this next sequence, you will convert your BM71 configuration file into a Flash Configuration Table that can be #included in the MPLAB project.
If you have not done so already, download and extract the Explorer 16 BM7x Pictail Stopwatch Project to your C:\ folder
Prepare the BM71 PICTail for use on the Explorer 16 board
18
Prepare BM71 PICTail Jumpers
Disconnect the USB cable from the PICTail board. Configure the module for Application mode by moving dip-switch SW7 to the OFF position. Prepare for connection to Explorer 16 by disconnecting the BM71 UART pins from the MCP2200 (remove J3 Jumpers), and finally, set the power source to PIC (Jumper J1) as shown:
Program/Run the PIC24 MCU Stopwatch Demo Project
If you have not done so already, download and extract the Explorer 16 BM7x Pictail Stopwatch Project to your C:\ folder.
20
Open the Project
Start MPLAB X and open the project C:\host-firmware\Explorer16 BM70 Pictail Stopwatch.X.
23
Build/Run the Project
Build/Run the project by pressing the Make and Program Device button.
You will first see “Initializing…” text on the LCD display, indicating the initialization of the BM71 parameters, as well as verification of correct BM71 firmware version (1.06).
Upon success, the LCD should display the device name, the last four bytes of the MAC address, as well as a stopwatch display.
LED_D3 should also blip two times per second indicating an advertising state.
PIC24 Demo Startup Troubleshooting
LCD reads “Initialize Error"
This results in the host MCU not receiving any response to Read Information command, or an invalid BM71 fw version is read (not v1.06).
Possible Causes:
- Incorrect PICTail jumper settings—review Step 18.
- Incorrect BM71 firmware—reprogram with v1.06.
- Incorrect BM71 configuration—re-load your saved BM71 UI configuration file and verify correct settings as described in steps 1 through 15. Re-create the BM71 EEPROM Configuration Table.
- Alternatively, create/deploy the BM71 EEPROM Configuration Table using the Solution BM71 UI Configuration File provided.
Sanity Check:
To verify the basic functionality of the module, you can revert the PICTail jumpers J3 and J1 for standalone operation (as shown) and use the Manual Pattern Test Tool.
Note: You may need to Jumper UART_RX_IND to GND before the tool will be able to communicate as shown here.
Interact With The Service using the Stopwatch App
You will need to research the specific details for the installation of *.apk application files on your Android device.
Generally, you connect your phone to the PC using the USB cable that came with it, then transfer the *.apk file over to the device. Next, go to the security settings, and enable installation of Apps from "sources other than the Play Store". Finally, simply locate and tap on the *.apk file to install it.
After installing the app, go to security settings and disable the "installation of Apps from sources other than the Play Store."
24
Start The App, Scan for Stopwatch Devices, Select Device
Start the Stopwatch App on your smartphone:
Tap on SCAN to begin scanning for devices as shown:
Locate and Tap on your device to establish a connection to it. The Explorer 16 LCD should indicate connected status. In addition, you should see Explorer 16 LED_D3 latch to an ON-state indicating a connected state:
Demo Not Working?
Symptoms:
The device is connected, however, you cannot start the stopwatch from the app, or you do not receive any updates from the Explorer 16 when pressing S3/S6 buttons.
Causes:
The most likely cause is a mismatch between the characteristic handle values in the BM71 GATT Service Table, vs what is encoded in the PIC24 firmware.
In MPLAB X IDE, open file definitions.h, and scroll to line 106. This is where we define the Handle IDs for each characteristic we want to update in our application:
In particular, note the two handles circled. The first is the writable characteristic Stopwatch Control Point (0x8002), the second is the notify characteristic Stopwatch Status (0x8004).
The Handle values for these two characteristics need to match those generated by the UI Configuration tool (see Step 12):
Conclusions
- Private GATT Services are easily created on the BM71 using the UI Configuration tool.
- The BM7x EEPROM Table Utility is used to convert a UI Configuration file to an EEPROM Table that can be embedded into your project, simplifying production deployment.
- The MCU Host must capture BLE connection parameters (including Connection Handle) to be able to modify characteristic values in the BM71.
- Care must be taken to embed the correct characteristic handles generated by the tool into the embedded host code.
Table of Contents
|