[PATCH 4/6] android/hal: Add device found event handler

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is called when new remote device is found.

---
 android/hal-bluetooth.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c
index b13f4d7..261ae85 100644
--- a/android/hal-bluetooth.c
+++ b/android/hal-bluetooth.c
@@ -93,6 +93,27 @@ static void handle_discovery_state_changed(void *buf)
 		bt_hal_cbacks->discovery_state_changed_cb(ev->state);
 }
 
+static void handle_device_found(void *buf)
+{
+	uint8_t i;
+	struct hal_ev_device_found *ev = buf;
+	bt_property_t send_props[ev->num_props];
+	struct hal_property *prop = ev->props;
+
+	if (!bt_hal_cbacks->device_found_cb)
+		return;
+
+	/* repack props */
+	for (i = 0; i < ev->num_props; ++i) {
+		send_props[i].type = prop->type;
+		send_props[i].len = prop->len;
+		send_props[i].val = prop->val;
+
+		prop = (void *) prop + (sizeof(*prop) + prop->len);
+	}
+	bt_hal_cbacks->device_found_cb(ev->num_props, send_props);
+}
+
 /* will be called from notification thread context */
 void bt_notify_adapter(uint16_t opcode, void *buf, uint16_t len)
 {
@@ -109,6 +130,9 @@ void bt_notify_adapter(uint16_t opcode, void *buf, uint16_t len)
 	case HAL_EV_DISCOVERY_STATE_CHANGED:
 		handle_discovery_state_changed(buf);
 		break;
+	case HAL_EV_DEVICE_FOUND:
+		handle_device_found(buf);
+		break;
 	default:
 		DBG("Unhandled callback opcode=0x%x", opcode);
 		break;
-- 
1.8.4.1

--
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




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux