From 58443a997000845c7fb62bb5b571b8226edce6bc Mon Sep 17 00:00:00 2001 From: Bruna Moreira Date: Tue, 2 Oct 2012 16:24:28 -0400 Subject: [PATCH] alert: Add Ringer Control Point characteristic Ringer CP characteristic is used for configuring "silent mode" or muting the ringer once. --- profiles/alert/server.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/profiles/alert/server.c b/profiles/alert/server.c index b39ef8a0e..8337c3818 100644 --- a/profiles/alert/server.c +++ b/profiles/alert/server.c @@ -32,6 +32,9 @@ #include "att.h" #include "adapter.h" +#include "device.h" +#include "att-database.h" +#include "log.h" #include "gatt-service.h" #include "gattrib.h" #include "gatt.h" @@ -39,6 +42,16 @@ #include "profile.h" #define PHONE_ALERT_STATUS_SVC_UUID 0x180E +#define RINGER_CP_CHR_UUID 0x2A40 + +static uint8_t ringer_cp_write(struct attribute *a, + struct btd_device *device, + gpointer user_data) +{ + DBG("a = %p", a); + + return 0; +} static void register_phone_alert_service(struct btd_adapter *adapter) { @@ -48,6 +61,11 @@ static void register_phone_alert_service(struct btd_adapter *adapter) /* Phone Alert Status Service */ gatt_service_add(adapter, GATT_PRIM_SVC_UUID, &uuid, + /* Ringer Control Point characteristic */ + GATT_OPT_CHR_UUID, RINGER_CP_CHR_UUID, + GATT_OPT_CHR_PROPS, ATT_CHAR_PROPER_WRITE_WITHOUT_RESP, + GATT_OPT_CHR_VALUE_CB, ATTRIB_WRITE, + ringer_cp_write, NULL, GATT_OPT_INVALID); } -- 2.47.3