From 0f3f40bab5c746e8a06c7b2a4d4a4a7fdb99f6d8 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 30 Jun 2017 15:42:29 +0300 Subject: shared/gatt-client: Allow multiple ready callbacks This makes the ready callbacks much more convenient to track when the client is ready since its is now possible to notify more than on client at the same time. --- peripheral/gatt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'peripheral') diff --git a/peripheral/gatt.c b/peripheral/gatt.c index 4c5531d81..5ae19a8e5 100644 --- a/peripheral/gatt.c +++ b/peripheral/gatt.c @@ -145,8 +145,8 @@ static struct gatt_conn *gatt_conn_new(int fd) return NULL; } - bt_gatt_client_set_ready_handler(conn->client, - client_ready_callback, conn, NULL); + bt_gatt_client_ready_register(conn->client, client_ready_callback, + conn, NULL); bt_gatt_client_set_service_changed(conn->client, client_service_changed_callback, conn, NULL); -- cgit v1.2.1