From f0d0e84ef4fdb6457b4a0444dce7303fc0500a9e Mon Sep 17 00:00:00 2001 From: Tatiana Leon Date: Tue, 20 Jul 2021 16:18:30 +0200 Subject: [PATCH] ble-gatt-server-example: add support for notify multiple See bluez commit b8b59af4e88069cb2f67b0168113aa489f6e1fe9. Signed-off-by: Tatiana Leon --- ble-gatt-server-example/ble-gatt-server-app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ble-gatt-server-example/ble-gatt-server-app.c b/ble-gatt-server-example/ble-gatt-server-app.c index d13b257..797dc3c 100644 --- a/ble-gatt-server-example/ble-gatt-server-app.c +++ b/ble-gatt-server-example/ble-gatt-server-app.c @@ -351,7 +351,7 @@ static bool temperature_notify_cb(void *user_data) bt_gatt_server_send_notification(server->gatt, notify_data->handle, ¬ify_value, - sizeof(notify_value)); + sizeof(notify_value), false); } return true;