Heart Rate Monitor example for the BLE API using nRF51822 native mode drivers
Dependencies: BLE_API mbed nRF51822 X_NUCLEO_IDB0XA1
Fork of BLE_HeartRate by
Diff: main.cpp
- Revision:
- 33:e63df636d3b2
- Parent:
- 30:3dc9e6f2bc8c
- Child:
- 34:44dc6efc0b50
--- a/main.cpp Fri Jul 04 15:10:19 2014 +0100 +++ b/main.cpp Tue Jul 08 11:18:33 2014 +0100 @@ -40,7 +40,7 @@ static uint8_t bpm[2] = {0x00, hrmCounter}; GattCharacteristic hrmRate(GattCharacteristic::UUID_HEART_RATE_MEASUREMENT_CHAR, bpm, sizeof(bpm), sizeof(bpm), GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_NOTIFY); -static const uint8_t location = 0x03; /* Finger */ +static uint8_t location = 0x03; /* Finger */ GattCharacteristic hrmLocation(GattCharacteristic::UUID_BODY_SENSOR_LOCATION_CHAR, (uint8_t *)&location, sizeof(location), sizeof(location), GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_READ);