Diff between 7ebfa1dbd28577b37ae975fe09519d05b3c069fc and fa9a8efb9e167e1372c24b8dab9ed461e5f5fe5d

Changed Files

File Additions Deletions Status
android/hal-handsfree.c +15 -1 modified

Full Patch

diff --git a/android/hal-handsfree.c b/android/hal-handsfree.c
index 8b644f3..c2b3fd5 100644
--- a/android/hal-handsfree.c
+++ b/android/hal-handsfree.c
@@ -828,6 +828,17 @@ static void cleanup(void)
 	hal_ipc_unregister(HAL_SERVICE_ID_HANDSFREE);
 }
 
+#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
+static bt_status_t configure_wbs(bt_bdaddr_t *bd_addr, bthf_wbs_config_t config)
+{
+	/* TODO: implement */
+
+	DBG("");
+
+	return BT_STATUS_UNSUPPORTED;
+}
+#endif
+
 static bthf_interface_t iface = {
 	.size = sizeof(iface),
 	.init = init,
@@ -845,7 +856,10 @@ static bthf_interface_t iface = {
 	.at_response = at_response,
 	.clcc_response = clcc_response,
 	.phone_state_change = phone_state_change,
-	.cleanup = cleanup
+	.cleanup = cleanup,
+#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
+	.configure_wbs = configure_wbs,
+#endif
 };
 
 bthf_interface_t *bt_get_handsfree_interface(void)