From 9e99503db237119afdf36bb60eb3b49ad7b57fe7 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 30 Jan 2020 14:15:21 +0100 Subject: [PATCH] auto-pts: add characteristic user description to gap name --- test/auto-pts/btpclient.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/auto-pts/btpclient.c b/test/auto-pts/btpclient.c index 2a28e52fe..d0a36cf17 100644 --- a/test/auto-pts/btpclient.c +++ b/test/auto-pts/btpclient.c @@ -196,9 +196,10 @@ static void reset_gap(void){ static void reset_gatt(void){ static const char * btp_name = "tester"; att_db_util_init(); - // setup gap service with gap name characteristic "tester" + // setup gap service with gap name characteristic "tester" and user description "tester" att_db_util_add_service_uuid16(ORG_BLUETOOTH_SERVICE_GENERIC_ACCESS); att_db_util_add_characteristic_uuid16(ORG_BLUETOOTH_CHARACTERISTIC_GAP_DEVICE_NAME, ATT_PROPERTY_READ, ATT_SECURITY_NONE, ATT_SECURITY_NONE, (uint8_t *) btp_name, 6); + att_db_util_add_descriptor_uuid16(GATT_CHARACTERISTIC_USER_DESCRIPTION, ATT_PROPERTY_READ, ATT_SECURITY_NONE, ATT_SECURITY_NONE, (uint8_t *) btp_name, 6); } static void le_device_delete_all(void){