mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-18 01:13:50 +00:00
auto-pts: add GAP Service with GAP Name Characteristic
This commit is contained in:
parent
3736510d8c
commit
ee624a0a80
@ -189,7 +189,11 @@ 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"
|
||||
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);
|
||||
}
|
||||
|
||||
static void btstack_packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
||||
|
Loading…
Reference in New Issue
Block a user