From 087d927a058437a3f6379024705534365a403768 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Thu, 15 Jun 2017 19:44:41 -0700 Subject: binding: bluetooth: allow connection to specified profile UUID Allow connect/disconnect to a single BT UUID profile that is specified for a device. Change-Id: Ia3c67fd5f0e9b6467aa7eaae2e75dddfe80251ae Bug-AGL: SPEC-669 Signed-off-by: Matt Ranostay --- bluetooth-api.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bluetooth-api.c b/bluetooth-api.c index 3c8d86f..79cebee 100644 --- a/bluetooth-api.c +++ b/bluetooth-api.c @@ -485,6 +485,7 @@ static void bt_connect (struct afb_req request) LOGD("\n"); const char *value = afb_req_value (request, "value"); + const char *uuid = afb_req_value (request, "uuid"); int ret = 0; if (NULL == value) @@ -493,7 +494,7 @@ static void bt_connect (struct afb_req request) return; } - ret = device_connect(value, NULL); + ret = device_connect(value, uuid); if (0 == ret) { @@ -506,6 +507,11 @@ static void bt_connect (struct afb_req request) jstring = json_object_new_string(value); json_object_object_add(jresp, "Address", jstring); + if (uuid) { + jstring = json_object_new_string(uuid); + json_object_object_add(jresp, "UUID", jstring); + } + event_push(jresp, "connection"); afb_req_success (request, NULL, NULL); } @@ -522,6 +528,7 @@ static void bt_disconnect (struct afb_req request) LOGD("\n"); const char *value = afb_req_value (request, "value"); + const char *uuid = afb_req_value (request, "uuid"); int ret = 0; if (NULL == value) @@ -542,6 +549,11 @@ static void bt_disconnect (struct afb_req request) jstring = json_object_new_string(value); json_object_object_add(jresp, "Address", jstring); + if (uuid) { + jstring = json_object_new_string(uuid); + json_object_object_add(jresp, "UUID", jstring); + } + event_push(jresp, "connection"); afb_req_success (request, NULL, NULL); } -- cgit 1.2.3-korg