Experimental BLE project showing how IO can be made with an App over BLE. Pointer to matching App will be added when ready, initially this works with: - Android App [nRF-Master Control Panel], supports Write,Read,Notify - Android Project [BluetoothLeGatt]

Dependencies:   BLE_API mbed nRF51822

This is an experimental project for BLE (Bluetooth LE == Bluetooth Low Energy == Bluetooth Smart).

  • It supports general IO over BLE with Read/Notify/Write support.
  • It is compatible with FOTA using Android App "nRF Master Control Panel" (20150126)
  • IO supported by:
    • Custom Android App is in the WIKI under: Android-App, developed from Android Sample "BluetoothLeGatt"
    • Android App: nRF-MCP (Master Control Panel)
    • iOS App LightBlue.
    • General HRM, HTM, Battery and similar apps should be able to access the matching services.
  • It includes combinations of code from other projects, alternative code included can be tried by moving comments (, //)
  • 20150126 bleIO r25: It compiles for both "Nordic nRF51822" and "Nordic nRF51822 FOTA" platforms
  • 20150126 The matching bleIO App (in wiki) doesn't support FOTA yet, use Android App "nRF Master Control Panel"

Feedback and ideas greatly appreciated!!!

Committer:
prussell
Date:
Thu Dec 11 13:44:13 2014 +0000
Revision:
1:4a25d917fb6a
Parent:
0:0217a862b047
Child:
2:c77c2b06d604
Updated Libs: nRF51822, BLE_API, mbed
; Updated Debug

Who changed what in which revision?

UserRevisionLine numberNew contents of line
prussell 0:0217a862b047 1 //=========Header (PR)
prussell 0:0217a862b047 2 // blePRv04, Initial: 20141210 Paul Russell (mbed user: prussell = PR)
prussell 0:0217a862b047 3 // This sample includes code from several projects found on http://developer.mbed.org, including but not limited to:
prussell 0:0217a862b047 4 // - http://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_HeartRate/
prussell 0:0217a862b047 5 // - https://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_LoopbackUART/
prussell 1:4a25d917fb6a 6 // - https://developer.mbed.org/users/takafuminaka/code/BLE_HTM_by_InTempSensr/
prussell 0:0217a862b047 7 // - miscellaneous adopted from more samples...
prussell 0:0217a862b047 8 // Reference:
prussell 0:0217a862b047 9 // - http://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/
prussell 0:0217a862b047 10 // - Reference: http://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/docs/tip/
prussell 0:0217a862b047 11 // - Reference: http://developer.mbed.org/teams/Bluetooth-Low-Energy/
prussell 0:0217a862b047 12 // Warnings:
prussell 0:0217a862b047 13 // - As of 20141210 it is necessary to use Android App [nRF-Master Control Panel] to ensure any previous connected
prussell 0:0217a862b047 14 // code on mkit is properly Disconnected before trying to connect other Android nRF Apps (nRFToolbox, nRF UART 2.0, etc.).
prussell 0:0217a862b047 15 // As UART device doesn't offer disconnect you may need to load a 3rf sample, then connect, then discoonect, to clear the link.
prussell 0:0217a862b047 16 // Notes:
prussell 0:0217a862b047 17 // - onDataSent() maybe only occuring when confirmed receive by phone, as onDataSent() didn't happen when phone moved out of range.
prussell 0:0217a862b047 18 // - onDisconnect(Reason:8) occured after ~20Tx with no onDataSent() after phone moved out of range, OnTimeout didn't occur at all.
prussell 0:0217a862b047 19 // ToDo: and ToCheck:
prussell 0:0217a862b047 20 // - Re-check where voltatile needed
prussell 0:0217a862b047 21 //==========End of PR's Header
prussell 0:0217a862b047 22
prussell 0:0217a862b047 23 //==========Historic Licencing from original imported sample from mbed website [BLE_HeartRate] ==========
prussell 0:0217a862b047 24 //From: http://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_HeartRate/
prussell 0:0217a862b047 25 /* mbed Microcontroller Library
prussell 0:0217a862b047 26 * Copyright (c) 2006-2013 ARM Limited
prussell 0:0217a862b047 27 *
prussell 0:0217a862b047 28 * Licensed under the Apache License, Version 2.0 (the "License");
prussell 0:0217a862b047 29 * you may not use this file except in compliance with the License.
prussell 0:0217a862b047 30 * You may obtain a copy of the License at
prussell 0:0217a862b047 31 * http://www.apache.org/licenses/LICENSE-2.0
prussell 0:0217a862b047 32 * Unless required by applicable law or agreed to in writing, software
prussell 0:0217a862b047 33 * distributed under the License is distributed on an "AS IS" BASIS,
prussell 0:0217a862b047 34 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
prussell 0:0217a862b047 35 * See the License for the specific language governing permissions and
prussell 0:0217a862b047 36 * limitations under the License. */
prussell 0:0217a862b047 37 //==========end of Historic Licencing ==========
prussell 0:0217a862b047 38
prussell 0:0217a862b047 39
prussell 0:0217a862b047 40 //==========Compile Options==========
prussell 0:0217a862b047 41 #define ENABLE_SerialUSB_DEBUG_CONSOLE 1 //PR: Enable Debug on mbed's USB Serial Debug, Setup: Serial 9600,8,N,1,NoFlowControl (TeraTerm: http://en.sourceforge.jp/projects/ttssh2/releases/)
prussell 0:0217a862b047 42 #define UPDATE_PARAMS_FOR_LONGER_CONNECTION_INTERVAL 0 //PR: Option to slow the connection intervsal possibly saving power (After Connected)
prussell 0:0217a862b047 43
prussell 0:0217a862b047 44 //==========Includes==========
prussell 0:0217a862b047 45 #include "mbed.h"
prussell 1:4a25d917fb6a 46 #include "BLEDevice.h" // BLE
prussell 1:4a25d917fb6a 47 #include "nrf_soc.h" // nRF Internal Temperature Sensor
prussell 0:0217a862b047 48
prussell 0:0217a862b047 49 //Services
prussell 0:0217a862b047 50 #include "BatteryService.h"
prussell 0:0217a862b047 51 #include "DeviceInformationService.h"
prussell 0:0217a862b047 52 //#include "DFUService" //TODO: DFU and FOTA Support
prussell 1:4a25d917fb6a 53 #include "HealthThermometerService.h" //TODO: Temperature, #include "ble_hts.h"
prussell 0:0217a862b047 54 #include "HeartRateService.h"
prussell 0:0217a862b047 55 //#include "UARTService.h" //TODO: Add a UART Channel for streaming data like logs?
prussell 0:0217a862b047 56
prussell 0:0217a862b047 57 //==========Debug Console==========
prussell 0:0217a862b047 58 #if ENABLE_SerialUSB_DEBUG_CONSOLE
prussell 0:0217a862b047 59 Serial debug_serial(USBTX, USBRX); //PR: DebugSerialOverMbedUSB 9600-8N1N
prussell 0:0217a862b047 60 #define DEBUG(...) { debug_serial.printf(__VA_ARGS__); }
prussell 0:0217a862b047 61 #else
prussell 0:0217a862b047 62 #define DEBUG(...) //Do Nothing
prussell 0:0217a862b047 63 #endif
prussell 0:0217a862b047 64
prussell 0:0217a862b047 65 //==========LEDs==========
prussell 0:0217a862b047 66 //LEDs:
prussell 0:0217a862b047 67 //DigitalOut out_led1(LED1); //PR: Firmware heartbeat
prussell 0:0217a862b047 68 //DigitalOut out_led2(LED2); //PR: Firmware heartbeat
prussell 0:0217a862b047 69 PwmOut pwm_led1(LED1); //PR: Firmware Life Indicator
prussell 0:0217a862b047 70 PwmOut pwm_led2(LED2); //TODO: Controlled by App
prussell 0:0217a862b047 71 float f_led1level = 0.0; //Initial Brightness (Typically 0.0~0.5)
prussell 0:0217a862b047 72 float f_led2level = 0.0; //Initial Brightness (Typically 0.0~0.5)
prussell 0:0217a862b047 73
prussell 0:0217a862b047 74 //==========BLE==========
prussell 0:0217a862b047 75 BLEDevice ble;
prussell 0:0217a862b047 76 const static char pcDeviceName[] = "blePRv04"; //PR: Why can App nRF-MCP modify this even though flagged as Const, maybe only temporary mod till App restarts?
prussell 0:0217a862b047 77 static const uint16_t uuid16_list[] = { //Service List (Pre-defined standard 16bit services)
prussell 1:4a25d917fb6a 78 //BLE_UUID_GAP UUID_GENERIC_ACCESS //0x1800 //Included by Default, DeviceName, Appearance, PreferredConnectionParam
prussell 1:4a25d917fb6a 79 //BLE_UUID_GATT UUID_GENERIC ATTRIBUTE //0x1801 //Included by Default, ServiceChanged,
prussell 1:4a25d917fb6a 80 GattService::UUID_BATTERY_SERVICE, //0x180F //BatteryLevel
prussell 1:4a25d917fb6a 81 GattService::UUID_DEVICE_INFORMATION_SERVICE, //0x180A //sManufacturer, sModelNumber, sSerialNumber, sHWver, sFWver, sSWver
prussell 1:4a25d917fb6a 82 GattService::UUID_HEART_RATE_SERVICE, //0x180D //HRM, BodyLocation, ControlPoint
prussell 1:4a25d917fb6a 83 //GattService::UUID_HEALTH_THERMOMETER_SERVICE, //0x1809 //HTM
prussell 1:4a25d917fb6a 84 //x GattService::UUID_DFU, //0x1530 - See UARTServiceShortUUID in BLE_API:DFUService.cpp //
prussell 1:4a25d917fb6a 85 //x GattService::UARTService, //0x0001 - See DFUServiceShortUUID in BLE_API:UARTService.cpp //
prussell 1:4a25d917fb6a 86 //GattService::UUID_ALERT_NOTIFICATION_SERVICE, = 0x1811,
prussell 1:4a25d917fb6a 87 //GattService::UUID_CURRENT_TIME_SERVICE, = 0x1805,
prussell 1:4a25d917fb6a 88 //GattService::UUID_HUMAN_INTERFACE_DEVICE_SERVICE, = 0x1812,
prussell 1:4a25d917fb6a 89 //GattService::UUID_IMMEDIATE_ALERT_SERVICE, = 0x1802,
prussell 1:4a25d917fb6a 90 //GattService::UUID_LINK_LOSS_SERVICE, = 0x1803,
prussell 1:4a25d917fb6a 91 //GattService::UUID_PHONE_ALERT_STATUS_SERVICE, = 0x180E,
prussell 1:4a25d917fb6a 92 //GattService::UUID_REFERENCE_TIME_UPDATE_SERVICE, = 0x1806,
prussell 1:4a25d917fb6a 93 //GattService::UUID_SCAN_PARAMETERS_SERVICE, = 0x1813,
prussell 1:4a25d917fb6a 94 };
prussell 1:4a25d917fb6a 95
prussell 1:4a25d917fb6a 96 //==========Internal Temperature==========
prussell 1:4a25d917fb6a 97 //Adopted From: https://developer.mbed.org/users/takafuminaka/code/BLE_HTM_by_InTempSensr/
prussell 1:4a25d917fb6a 98 // Service: https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.health_thermometer.xml
prussell 1:4a25d917fb6a 99 // HTM Char: https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.temperature_measurement.xml
prussell 1:4a25d917fb6a 100 uint8_t thermTempPayload[5] = { 0, 0, 0, 0, 0 };
prussell 1:4a25d917fb6a 101 GattCharacteristic tempChar (GattCharacteristic::UUID_TEMPERATURE_MEASUREMENT_CHAR,
prussell 1:4a25d917fb6a 102 thermTempPayload, sizeof(thermTempPayload), sizeof(thermTempPayload),
prussell 1:4a25d917fb6a 103 GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_INDICATE);
prussell 1:4a25d917fb6a 104 GattCharacteristic *htmChars[] = {&tempChar, };
prussell 1:4a25d917fb6a 105 GattService htmService(GattService::UUID_HEALTH_THERMOMETER_SERVICE, htmChars,
prussell 1:4a25d917fb6a 106 sizeof(htmChars) / sizeof(GattCharacteristic *));
prussell 1:4a25d917fb6a 107
prussell 1:4a25d917fb6a 108 //==========Battery==========
prussell 1:4a25d917fb6a 109 //Adopted From: https://developer.mbed.org/users/takafuminaka/code/BLE_HTM_by_InTempSensr/
prussell 1:4a25d917fb6a 110 ///int8_t batt = 98; /* Battery level */
prussell 1:4a25d917fb6a 111 //uint8_t read_batt = 0; /* Variable to hold battery level reads */
prussell 1:4a25d917fb6a 112 //static uint8_t bpm2[1] = {batt};
prussell 1:4a25d917fb6a 113 //GattCharacteristic battLevel ( GattCharacteristic::UUID_BATTERY_LEVEL_CHAR, bpm2, sizeof(bpm2), sizeof(bpm2),
prussell 1:4a25d917fb6a 114 // GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_NOTIFY |
prussell 1:4a25d917fb6a 115 // GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_READ);
prussell 1:4a25d917fb6a 116 //GattCharacteristic *battChars[] = {&battLevel, };
prussell 1:4a25d917fb6a 117 //GattService battService(GattService::UUID_BATTERY_SERVICE, battChars, sizeof(battChars) / sizeof(GattCharacteristic *));
prussell 1:4a25d917fb6a 118
prussell 0:0217a862b047 119
prussell 0:0217a862b047 120 //==========Functions:Timer==========
prussell 0:0217a862b047 121 static volatile bool b_Ticker1 = false;//Volatile, don't optimize, changes under interrupt control
prussell 0:0217a862b047 122 void CallbackTicker1(void)
prussell 0:0217a862b047 123 {
prussell 0:0217a862b047 124 static uint32_t u32_Counter; // Counter for Debug Output
prussell 0:0217a862b047 125
prussell 0:0217a862b047 126 //pwm_led1 = !pwm_led1; /* Do blinky on LED1 while we're waiting for BLE events */
prussell 0:0217a862b047 127 f_led1level+=0.1; if (f_led1level>0.5){f_led1level = 0.1;}; pwm_led1=f_led1level;//PR: Ramp Blink
prussell 0:0217a862b047 128 DEBUG("\nBLEi: Ticker1(%u) ", ++u32_Counter);
prussell 0:0217a862b047 129 b_Ticker1 = true; //PR: Flag to handle Ticker1 Event in Main loop so interupts not blocked.
prussell 0:0217a862b047 130 }
prussell 0:0217a862b047 131
prussell 0:0217a862b047 132 //==========Functions:BLE==========
prussell 0:0217a862b047 133 void Callback_BLE_onTimeout(void)
prussell 0:0217a862b047 134 {
prussell 0:0217a862b047 135 DEBUG("\nBLEi: Callback_BLE_onTimeout()\n" );
prussell 0:0217a862b047 136 //PR: Haven't seen this, even when phone moved out of range and OnDisconnect(Reason0x08) occurs
prussell 0:0217a862b047 137
prussell 0:0217a862b047 138 //DEBUG("\nBLE:Callback_BLE_onTimeout(), Restarting Advertising\n" );
prussell 0:0217a862b047 139 //ble.startAdvertising();
prussell 0:0217a862b047 140 }
prussell 0:0217a862b047 141
prussell 0:0217a862b047 142 //void onDisconnection (Gap::DisconnectionEventCallback_t disconnectionCallback)
prussell 0:0217a862b047 143 void Callback_BLE_onDisconnect(Gap::Handle_t tHandle, Gap::DisconnectionReason_t eReason)
prussell 0:0217a862b047 144 {
prussell 0:0217a862b047 145 //PR: onDisconnect(Reason:8) occured after ~20Tx with no onDataSent() after phone moved out of range
prussell 0:0217a862b047 146
prussell 0:0217a862b047 147 // REMOTE_USER_TERMINATED_CONNECTION = 0x13 = 19,
prussell 0:0217a862b047 148 // LOCAL_HOST_TERMINATED_CONNECTION = 0x16 = 22,
prussell 0:0217a862b047 149 // CONN_INTERVAL_UNACCEPTABLE = 0x3B = 59,
prussell 0:0217a862b047 150 DEBUG("\nBLEi: Callback_BLE_Disconnect(Handle:%d, eReason:0x%02x), Restarting Advertising\n",tHandle,eReason );//PR: Occurs properly when click disconnect in App nRFToolbox:HRM
prussell 0:0217a862b047 151
prussell 0:0217a862b047 152 //DEBUG("Wait10sec...\n");wait(10.0); //PR: Optional to test effect on advertising
prussell 0:0217a862b047 153 ble.startAdvertising(); // restart advertising
prussell 0:0217a862b047 154 }
prussell 0:0217a862b047 155
prussell 0:0217a862b047 156 //inline void BLEDevice::onConnection(Gap::ConnectionEventCallback_t connectionCallback){ transport->getGap().setOnConnection(connectionCallback);}
prussell 0:0217a862b047 157 void Callback_BLE_onConnect(Gap::Handle_t tHandle, Gap::addr_type_t ePeerAddrType, const Gap::address_t c6PeerAddr, const Gap::ConnectionParams_t *params)
prussell 0:0217a862b047 158 {
prussell 0:0217a862b047 159 DEBUG("\nBLEi: Callback_BLE_Connect(Handle:%d, eType:%d, Add:%u ...)\n", tHandle, ePeerAddrType, c6PeerAddr);
prussell 0:0217a862b047 160
prussell 0:0217a862b047 161 #if UPDATE_PARAMS_FOR_LONGER_CONNECTION_INTERVAL
prussell 0:0217a862b047 162 /* Updating connection parameters can be attempted only after a connection has been
prussell 0:0217a862b047 163 * established. Please note that the ble-Central is still the final arbiter for
prussell 0:0217a862b047 164 * the effective parameters; the peripheral can only hope that the request is
prussell 0:0217a862b047 165 * honored. Please also be mindful of the constraints that might be enforced by
prussell 0:0217a862b047 166 * the BLE stack on the underlying controller.*/
prussell 0:0217a862b047 167 #define MIN_CONN_INTERVAL 250 /**< Minimum connection interval (250 ms) */
prussell 0:0217a862b047 168 #define MAX_CONN_INTERVAL 350 /**< Maximum connection interval (350 ms). */
prussell 0:0217a862b047 169 #define CONN_SUP_TIMEOUT 6000 /**< Connection supervisory timeout (6 seconds). */
prussell 0:0217a862b047 170 #define SLAVE_LATENCY 4
prussell 0:0217a862b047 171
prussell 0:0217a862b047 172 Gap::ConnectionParams_t tGap_conn_params;
prussell 0:0217a862b047 173 tGap_conn_params.minConnectionInterval = Gap::MSEC_TO_GAP_DURATION_UNITS(MIN_CONN_INTERVAL);
prussell 0:0217a862b047 174 tGap_conn_params.maxConnectionInterval = Gap::MSEC_TO_GAP_DURATION_UNITS(MAX_CONN_INTERVAL);
prussell 0:0217a862b047 175 tGap_conn_params.connectionSupervisionTimeout = Gap::MSEC_TO_GAP_DURATION_UNITS(CONN_SUP_TIMEOUT);
prussell 0:0217a862b047 176 tGap_conn_params.slaveLatency = SLAVE_LATENCY;
prussell 0:0217a862b047 177 ble.updateConnectionParams(tHandle, &tGap_conn_params);
prussell 0:0217a862b047 178 #endif /* #if UPDATE_PARAMS_FOR_LONGER_CONNECTION_INTERVAL */
prussell 0:0217a862b047 179 }
prussell 0:0217a862b047 180
prussell 0:0217a862b047 181 static volatile bool bSent = false; //Volatile, don't optimize, changes under interrupt control
prussell 0:0217a862b047 182 static volatile unsigned uSentBLE;
prussell 0:0217a862b047 183 void Callback_BLE_onDataSent(unsigned uSent){
prussell 0:0217a862b047 184 uSentBLE=uSent;
prussell 1:4a25d917fb6a 185 DEBUG("BLEi: SentI(%u)", uSent); //TODO: PR: Why uSent always "1", expected it to match sent bytes length
prussell 0:0217a862b047 186 bSent = true;
prussell 0:0217a862b047 187 //PR: onDataSent() maybe only occuring when confirmed receive by phone, as onDataSent() didn't happen when phone moved out of range.
prussell 0:0217a862b047 188 }
prussell 0:0217a862b047 189
prussell 0:0217a862b047 190 void Callback_BLE_onDataWritten(const GattCharacteristicWriteCBParams *pParams)
prussell 0:0217a862b047 191 {
prussell 0:0217a862b047 192 // Callback_BLE_onDataWritten == This does occur when use nRF-MCP to save New Heart Rate Control Point (Ignored if incorrect length)
prussell 0:0217a862b047 193
prussell 0:0217a862b047 194 //Warning: *data may not be NULL terminated
prussell 0:0217a862b047 195 DEBUG("\nBLEi: Callback_BLE_onDataWritten(Handle:%d, eOp:%d, uOffset:%u uLen:%u Data0[0x%02x]=Data[%*s]\n", pParams->charHandle, pParams->op, pParams->offset, pParams->len, (char)(pParams->data[0]), pParams->len, pParams->data);
prussell 0:0217a862b047 196 }
prussell 0:0217a862b047 197
prussell 0:0217a862b047 198 void Callback_BLE_onUpdatesEnabled(Gap::Handle_t tHandle)
prussell 0:0217a862b047 199 {
prussell 0:0217a862b047 200 DEBUG("\nBLEi: Callback_BLE_onUpdates(Handle:%d)\r\n", tHandle);
prussell 0:0217a862b047 201 }
prussell 0:0217a862b047 202
prussell 0:0217a862b047 203 //==========main==========
prussell 0:0217a862b047 204 int main(void)
prussell 0:0217a862b047 205 {
prussell 0:0217a862b047 206 f_led1level = 1; pwm_led1 = f_led1level;//Start LED1=OnMax
prussell 0:0217a862b047 207 f_led2level = 1; pwm_led2 = f_led2level;//Start LED2=OnMax
prussell 1:4a25d917fb6a 208 DEBUG("\nBLE: ___%s___\n", pcDeviceName); //Restart TeraTerm just before Pressing Reset on mbed
prussell 1:4a25d917fb6a 209 DEBUG("BLE: Connect App for Data: nRF-MCP, nRF-Toolbox:HRM, etc.\n");
prussell 0:0217a862b047 210
prussell 0:0217a862b047 211 Ticker ticker1; //PR: Timer Object(Structure)
prussell 0:0217a862b047 212 //ticker1.attach(CallbackTicker1, 1.0); //PR: Timer Handler, Float=PeriodSeconds
prussell 0:0217a862b047 213 ticker1.attach(CallbackTicker1, 2.0); //PR: Timer Handler, Float=PeriodSeconds
prussell 0:0217a862b047 214 //ticker1.attach(CallbackTicker1, 5.0); //PR: Timer Handler, Float=PeriodSeconds
prussell 0:0217a862b047 215
prussell 0:0217a862b047 216 //Initialize BLE Service (and event actions)
prussell 0:0217a862b047 217 ble.init();
prussell 0:0217a862b047 218 ble.onDisconnection(Callback_BLE_onDisconnect);
prussell 0:0217a862b047 219 ble.onConnection(Callback_BLE_onConnect); //PR: Not required if no actions enabled, enabled now just for debug printf()
prussell 0:0217a862b047 220 ble.onDataSent(Callback_BLE_onDataSent);
prussell 0:0217a862b047 221 ble.onDataWritten(Callback_BLE_onDataWritten);
prussell 0:0217a862b047 222 ble.onTimeout(Callback_BLE_onTimeout);
prussell 0:0217a862b047 223 ble.onUpdatesEnabled(Callback_BLE_onUpdatesEnabled);
prussell 0:0217a862b047 224
prussell 0:0217a862b047 225 //ble_error_t readCharacteristicValue ( uint16_t handle, uint8_t *const buffer, uint16_t *const lengthP )
prussell 0:0217a862b047 226 //ble_error_t updateCharacteristicValue (uint16_t handle, const uint8_t *value, uint16_t size, bool localOnly=false)
prussell 0:0217a862b047 227
prussell 0:0217a862b047 228 /* Setup primary service. */
prussell 0:0217a862b047 229 uint8_t u8LoopCounter = 100;
prussell 0:0217a862b047 230 HeartRateService hrService(ble, u8LoopCounter, HeartRateService::LOCATION_FINGER); //Start the service for BLE:HRM
prussell 0:0217a862b047 231
prussell 0:0217a862b047 232 /* Setup auxiliary services. */
prussell 0:0217a862b047 233 BatteryService battery(ble); //Start the service for BLE:Battery
prussell 0:0217a862b047 234 DeviceInformationService deviceInfo(ble, "Maker", pcDeviceName, "sn1234", "hw00", "fw00", "sw00");//Start the service for BLE:DeviceInfo
prussell 0:0217a862b047 235 // (BLEDevice), pcManufacturer, pcModelNumber, pcSerialNumber, pcHWver, pcFWver, pcSWver
prussell 0:0217a862b047 236
prussell 0:0217a862b047 237 /* Setup advertising. */
prussell 0:0217a862b047 238 ble.setAdvertisingInterval(Gap::MSEC_TO_ADVERTISEMENT_DURATION_UNITS(1000)); //PR: Advertise 1sec (1Hz)
prussell 0:0217a862b047 239 ble.setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED); //PR: TODO
prussell 0:0217a862b047 240 ble.accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE); //PR: BLE Only, Options(LE_GENERAL_DISCOVERABLE/LE_LIMITED_DISCOVERABLE)
prussell 0:0217a862b047 241 ble.accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LIST_16BIT_SERVICE_IDS, (uint8_t *)uuid16_list, sizeof(uuid16_list)); //PR: Might need to change for Custom Services/Characteristics
prussell 0:0217a862b047 242 ble.accumulateAdvertisingPayload(GapAdvertisingData::GENERIC_HEART_RATE_SENSOR);//PR: TODO: Change to: UNKNOWN or custom
prussell 0:0217a862b047 243 ble.accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LOCAL_NAME, (uint8_t *)pcDeviceName, sizeof(pcDeviceName));//PR: Product?
prussell 0:0217a862b047 244 ble.startAdvertising();
prussell 0:0217a862b047 245
prussell 0:0217a862b047 246 DEBUG("BLE: Main Loop\n");
prussell 0:0217a862b047 247
prussell 0:0217a862b047 248 uint32_t u32_wakeevents=0, u32_wakelast=0; // Counter&Register for tracking Wake Events (to see monitor their Frequency)
prussell 0:0217a862b047 249 while (true) {
prussell 0:0217a862b047 250 if (b_Ticker1 && ble.getGapState().connected) { //If Ticker1 and Connected Update Data
prussell 0:0217a862b047 251 b_Ticker1 = false; // Clear flag for next Ticker1, see CallbackTicker1()
prussell 0:0217a862b047 252
prussell 0:0217a862b047 253 /* Handle sensor polling == Simulate Data */
prussell 0:0217a862b047 254 u8LoopCounter++;
prussell 0:0217a862b047 255 if (u8LoopCounter >= 175) {
prussell 0:0217a862b047 256 u8LoopCounter = 100;
prussell 0:0217a862b047 257 DEBUG("BLE: HRM Rollover175->100 ", u8LoopCounter);
prussell 0:0217a862b047 258 }
prussell 0:0217a862b047 259 DEBUG("BLE: HRM:%u, Wakes:%u Delta:%d ", u8LoopCounter, u32_wakeevents, u32_wakeevents-u32_wakelast); u32_wakelast=u32_wakeevents;
prussell 0:0217a862b047 260 hrService.updateHeartRate(u8LoopCounter);
prussell 0:0217a862b047 261 } else if (b_Ticker1) {
prussell 0:0217a862b047 262 b_Ticker1 = false; // Clear flag for next Ticker1, see CallbackTicker1()
prussell 0:0217a862b047 263 DEBUG("BLE: Tick while unconnected ", u8LoopCounter);
prussell 0:0217a862b047 264 } else if (bSent){
prussell 0:0217a862b047 265 bSent=false; //clear flag
prussell 0:0217a862b047 266 //DEBUG("BLE:Sent %ubytes ", uSentBLE);
prussell 0:0217a862b047 267 } else {
prussell 0:0217a862b047 268 //DEBUG("BLE:Wait for Event\n\r"); //x Debug output here causes unnecessary wakes resulting in endless awakes.
prussell 0:0217a862b047 269 ble.waitForEvent(); //PR: Wait for event - Yield control to BLE Stack and other events (Process ALL pending events before waiting again)
prussell 0:0217a862b047 270 f_led2level+=0.25; if (f_led2level>0.5){f_led2level = 0.0;}; pwm_led2=f_led2level;//PR: Ramp Blink
prussell 0:0217a862b047 271 u32_wakeevents++; //PR: Count events for frequency monitoring (20141207PR: nRF51822 mbed HRM = 50Hz)
prussell 0:0217a862b047 272 }
prussell 0:0217a862b047 273 }
prussell 0:0217a862b047 274 }