This patch reads and stores Heart Rate Control Point characteristics value. Change-Id: I2716410c3c03ecb006a484006384aa53630aa6bf --- profiles/heartrate/heartrate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/heartrate/heartrate.c b/profiles/heartrate/heartrate.c index aaadee1..a0e0113 100644 --- a/profiles/heartrate/heartrate.c +++ b/profiles/heartrate/heartrate.c @@ -60,6 +60,7 @@ struct heartrate_device { GSList *chars; gboolean has_location; uint8_t location; + gboolean has_cp_reset; }; struct characteristic { @@ -423,6 +424,7 @@ static void process_heartrate_char(struct characteristic *ch) { if (g_strcmp0(ch->attr.uuid, HEART_RATE_CONTROL_POINT_UUID) == 0) { DBG("Heart Rate Control Point reset supported by client"); + ch->hrdev->has_cp_reset = TRUE; } else if (g_strcmp0(ch->attr.uuid, BODY_SENSOR_LOCATION_UUID) == 0) { DBG("Body Sensor Location supported by client"); gatt_read_char(ch->hrdev->attrib, ch->attr.value_handle, 0, -- 1.7.11.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html