2014-05-30 15:14:31 +00:00
/*
2015-02-06 11:25:18 +00:00
* Copyright ( C ) 2014 BlueKitchen GmbH
2014-05-30 15:14:31 +00:00
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
*
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission .
2015-02-06 11:25:18 +00:00
* 4. Any redistribution , use , or modification is done solely for
* personal benefit and not for any commercial purpose or for
* monetary gain .
2014-05-30 15:14:31 +00:00
*
2015-02-06 11:25:18 +00:00
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
2014-05-30 15:14:31 +00:00
* ` ` AS IS ' ' AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL MATTHIAS
* RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING ,
* BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS
* OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY ,
* OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE .
*
2015-02-06 11:25:18 +00:00
* Please inquire about commercial licensing options at
* contact @ bluekitchen - gmbh . com
*
2014-05-30 15:14:31 +00:00
*/
2014-10-16 09:15:23 +00:00
// *****************************************************************************
2015-04-23 21:40:15 +02:00
/* EXAMPLE_START(gatt_browser): GATT Client - Discovering primary services and their characteristics
*
* @ text This example shows how to use the GATT Client
* API to discover primary services and their characteristics of the first found
* device that is advertising its services .
*
2015-04-25 23:25:16 +02:00
* The logic is divided between the HCI and GATT client packet handlers .
* The HCI packet handler is responsible for finding a remote device ,
* connecting to it , and for starting the first GATT client query .
2015-04-23 21:40:15 +02:00
* Then , the GATT client packet handler receives all primary services and
* requests the characteristics of the last one to keep the example short .
*
*/
2014-10-16 09:15:23 +00:00
// *****************************************************************************
2014-05-30 15:14:31 +00:00
# include <stdint.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
2016-01-20 15:08:39 +01:00
# include "btstack_run_loop.h"
2016-01-21 11:33:17 +01:00
# include "hci_cmd.h"
2016-01-20 16:10:07 +01:00
# include "btstack_util.h"
2014-05-30 15:14:31 +00:00
2016-01-21 15:41:16 +01:00
# include "btstack_config.h"
2014-05-30 15:14:31 +00:00
2016-01-20 14:52:45 +01:00
# include "btstack_debug.h"
2014-05-30 15:14:31 +00:00
# include "btstack_memory.h"
# include "hci.h"
# include "hci_dump.h"
# include "l2cap.h"
2016-02-11 21:23:06 +01:00
# include "ble/att_db.h"
2015-11-13 15:04:41 +01:00
# include "ble/gatt_client.h"
# include "ble/ad_parser.h"
# include "ble/sm.h"
2014-05-30 15:14:31 +00:00
2014-07-04 08:42:30 +00:00
typedef struct advertising_report {
2014-05-30 15:14:31 +00:00
uint8_t type ;
uint8_t event_type ;
uint8_t address_type ;
bd_addr_t address ;
uint8_t rssi ;
uint8_t length ;
uint8_t * data ;
2014-07-04 08:42:30 +00:00
} advertising_report_t ;
2014-05-30 15:14:31 +00:00
2015-04-23 21:40:15 +02:00
static bd_addr_t cmdline_addr = { } ;
static int cmdline_addr_found = 0 ;
2016-02-03 21:55:36 +01:00
static uint16_t gc_handle ;
2015-04-23 21:40:15 +02:00
static le_service_t services [ 40 ] ;
static int service_count = 0 ;
static int service_index = 0 ;
2016-02-03 21:55:36 +01:00
static btstack_packet_callback_registration_t hci_event_callback_registration ;
2015-04-23 21:40:15 +02:00
2015-04-26 12:59:22 +02:00
/* @section GATT client setup
2015-04-23 21:40:15 +02:00
*
2015-04-26 12:59:22 +02:00
* @ text In the setup phase , a GATT client must register the HCI and GATT client
2015-04-25 23:25:16 +02:00
* packet handlers , as shown in Listing GATTClientSetup .
2015-04-23 21:40:15 +02:00
* Additionally , the security manager can be setup , if signed writes , or
2015-04-26 12:59:22 +02:00
* encrypted , or authenticated connection are required , to access the
2015-06-24 17:21:05 +02:00
* characteristics , as explained in Section on [ SMP ] ( . . / protocols / # sec : smpProtocols ) .
2015-04-23 21:40:15 +02:00
*/
2014-05-30 15:14:31 +00:00
2015-04-25 23:25:16 +02:00
/* LISTING_START(GATTClientSetup): Setting up GATT client */
2015-04-23 21:40:15 +02:00
static uint16_t gc_id ;
// Handles connect, disconnect, and advertising report events,
// starts the GATT client, and sends the first query.
2016-02-04 17:45:02 +01:00
static void handle_hci_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) ;
2015-04-23 21:40:15 +02:00
// Handles GATT client query results, sends queries and the
// GAP disconnect command when the querying is done.
2016-02-04 17:58:00 +01:00
void handle_gatt_client_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) ;
2015-04-23 21:40:15 +02:00
2015-05-13 10:30:46 +02:00
static void gatt_client_setup ( void ) {
2016-02-03 21:55:36 +01:00
// register for HCI events
hci_event_callback_registration . callback = & handle_hci_event ;
hci_add_event_handler ( & hci_event_callback_registration ) ;
2015-04-23 21:40:15 +02:00
// Initialize L2CAP and register HCI event handler
l2cap_init ( ) ;
// Initialize GATT client
gatt_client_init ( ) ;
// Register handler for GATT client events
gc_id = gatt_client_register_packet_handler ( & handle_gatt_client_event ) ;
2015-04-26 12:59:22 +02:00
// Optinoally, Setup security manager
2015-04-23 21:40:15 +02:00
sm_init ( ) ;
sm_set_io_capabilities ( IO_CAPABILITY_NO_INPUT_NO_OUTPUT ) ;
}
/* LISTING_END */
2014-05-30 15:14:31 +00:00
static void printUUID ( uint8_t * uuid128 , uint16_t uuid16 ) {
if ( uuid16 ) {
2014-05-30 22:35:14 +00:00
printf ( " %04x " , uuid16 ) ;
2014-05-30 15:14:31 +00:00
} else {
2016-02-10 17:01:26 +01:00
printf ( " %s " , uuid128_to_str ( uuid128 ) ) ;
2014-05-30 15:14:31 +00:00
}
}
2014-07-04 08:42:30 +00:00
static void dump_advertising_report ( advertising_report_t * e ) {
2014-05-30 15:14:31 +00:00
printf ( " * adv. event: evt-type %u, addr-type %u, addr %s, rssi %u, length adv %u, data: " , e - > event_type ,
e - > address_type , bd_addr_to_str ( e - > address ) , e - > rssi , e - > length ) ;
2014-08-15 22:04:48 +00:00
printf_hexdump ( e - > data , e - > length ) ;
2014-05-30 15:14:31 +00:00
}
static void dump_characteristic ( le_characteristic_t * characteristic ) {
2014-05-30 22:35:14 +00:00
printf ( " * characteristic: [0x%04x-0x%04x-0x%04x], properties 0x%02x, uuid " ,
2014-05-30 15:14:31 +00:00
characteristic - > start_handle , characteristic - > value_handle , characteristic - > end_handle , characteristic - > properties ) ;
printUUID ( characteristic - > uuid128 , characteristic - > uuid16 ) ;
2014-05-30 22:35:14 +00:00
printf ( " \n " ) ;
2014-05-30 15:14:31 +00:00
}
static void dump_service ( le_service_t * service ) {
2014-05-30 22:35:14 +00:00
printf ( " * service: [0x%04x-0x%04x], uuid " , service - > start_group_handle , service - > end_group_handle ) ;
2014-05-30 15:14:31 +00:00
printUUID ( service - > uuid128 , service - > uuid16 ) ;
2014-05-30 22:35:14 +00:00
printf ( " \n " ) ;
2014-05-30 15:14:31 +00:00
}
2014-07-04 08:42:30 +00:00
static void fill_advertising_report_from_packet ( advertising_report_t * report , uint8_t * packet ) {
int pos = 2 ;
report - > event_type = packet [ pos + + ] ;
report - > address_type = packet [ pos + + ] ;
2016-02-11 15:20:08 +01:00
reverse_bd_addr ( & packet [ pos ] , report - > address ) ;
2014-07-04 08:42:30 +00:00
pos + = 6 ;
report - > rssi = packet [ pos + + ] ;
report - > length = packet [ pos + + ] ;
report - > data = & packet [ pos ] ;
pos + = report - > length ;
dump_advertising_report ( report ) ;
}
2015-04-23 21:40:15 +02:00
2015-04-26 12:59:22 +02:00
/* @section HCI packet handler
2015-04-23 21:40:15 +02:00
*
2015-04-25 23:25:16 +02:00
* @ text The HCI packet handler has to start the scanning ,
2015-04-23 21:40:15 +02:00
* to find the first advertising device , to stop scanning , to connect
2015-04-27 00:02:07 +02:00
* to and later to disconnect from it , to start the GATT client upon
2015-04-23 21:40:15 +02:00
* the connection is completed , and to send the first query - in this
* case the gatt_client_discover_primary_services ( ) is called , see
2015-04-25 23:25:16 +02:00
* Listing GATTBrowserHCIPacketHandler .
2015-04-23 21:40:15 +02:00
*/
2015-04-25 23:25:16 +02:00
/* LISTING_START(GATTBrowserHCIPacketHandler): Connecting and disconnecting from the GATT client */
2016-02-04 17:45:02 +01:00
static void handle_hci_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) {
2014-05-30 15:14:31 +00:00
if ( packet_type ! = HCI_EVENT_PACKET ) return ;
2014-07-04 08:42:30 +00:00
advertising_report_t report ;
2014-10-02 20:06:29 +00:00
2014-07-04 08:42:30 +00:00
uint8_t event = packet [ 0 ] ;
switch ( event ) {
2014-05-30 15:14:31 +00:00
case BTSTACK_EVENT_STATE :
// BTstack activated, get started
2014-07-04 08:42:30 +00:00
if ( packet [ 2 ] ! = HCI_STATE_WORKING ) break ;
if ( cmdline_addr_found ) {
printf ( " Trying to connect to %s \n " , bd_addr_to_str ( cmdline_addr ) ) ;
2015-03-01 20:51:08 +00:00
le_central_connect ( cmdline_addr , 0 ) ;
2014-07-04 08:42:30 +00:00
break ;
2014-05-30 15:14:31 +00:00
}
2014-07-04 08:42:30 +00:00
printf ( " BTstack activated, start scanning! \n " ) ;
2014-08-08 13:14:07 +00:00
le_central_set_scan_parameters ( 0 , 0x0030 , 0x0030 ) ;
2014-07-04 08:42:30 +00:00
le_central_start_scan ( ) ;
break ;
2016-01-30 23:58:36 +01:00
case GAP_LE_EVENT_ADVERTISING_REPORT :
2014-07-04 08:42:30 +00:00
fill_advertising_report_from_packet ( & report , packet ) ;
// stop scanning, and connect to the device
2014-10-31 15:58:44 +00:00
le_central_stop_scan ( ) ;
2015-03-01 20:51:08 +00:00
le_central_connect ( report . address , report . address_type ) ;
2014-05-30 15:14:31 +00:00
break ;
case HCI_EVENT_LE_META :
2014-07-04 08:42:30 +00:00
// wait for connection complete
if ( packet [ 2 ] ! = HCI_SUBEVENT_LE_CONNECTION_COMPLETE ) break ;
2016-01-31 00:07:32 +01:00
gc_handle = little_endian_read_16 ( packet , 4 ) ;
2014-07-04 08:42:30 +00:00
// query primary services
2014-10-31 15:58:44 +00:00
gatt_client_discover_primary_services ( gc_id , gc_handle ) ;
2014-07-04 08:42:30 +00:00
break ;
case HCI_EVENT_DISCONNECTION_COMPLETE :
2015-04-25 23:25:16 +02:00
printf ( " \n GATT browser - DISCONNECTED \n " ) ;
2014-07-04 08:42:30 +00:00
exit ( 0 ) ;
2014-05-30 15:14:31 +00:00
break ;
default :
break ;
}
}
2015-04-23 21:40:15 +02:00
/* LISTING_END */
2015-04-26 12:59:22 +02:00
/* @section GATT Client event handler
*
* @ text Query results and further queries are handled by the GATT client packet
2015-04-25 23:25:16 +02:00
* handler , as shown in Listing GATTBrowserQueryHandler . Here , upon
* receiving the primary services , the
2015-04-23 21:40:15 +02:00
* gatt_client_discover_characteristics_for_service ( ) query for the last
* received service is sent . After receiving the characteristics for the service ,
* gap_disconnect is called to terminate the connection . Upon
2015-04-25 23:25:16 +02:00
* disconnect , the HCI packet handler receives the disconnect complete event .
2015-04-23 21:40:15 +02:00
*/
2015-04-25 23:25:16 +02:00
/* LISTING_START(GATTBrowserQueryHandler): Handling of the GATT client queries */
static int search_services = 1 ;
2015-10-15 15:15:54 +02:00
static void extract_service ( le_service_t * service , uint8_t * packet ) {
2016-01-31 00:07:32 +01:00
service - > start_group_handle = little_endian_read_16 ( packet , 4 ) ;
service - > end_group_handle = little_endian_read_16 ( packet , 6 ) ;
2015-10-15 15:15:54 +02:00
service - > uuid16 = 0 ;
2016-02-11 14:37:22 +01:00
reverse_128 ( & packet [ 8 ] , service - > uuid128 ) ;
2016-02-10 17:12:50 +01:00
if ( uuid_has_bluetooth_prefix ( service - > uuid128 ) ) {
2016-02-10 17:03:30 +01:00
service - > uuid16 = big_endian_read_32 ( service - > uuid128 , 0 ) ;
2015-10-15 15:15:54 +02:00
}
}
static void extract_characteristic ( le_characteristic_t * characteristic , uint8_t * packet ) {
2016-01-31 00:07:32 +01:00
characteristic - > start_handle = little_endian_read_16 ( packet , 4 ) ;
characteristic - > value_handle = little_endian_read_16 ( packet , 6 ) ;
characteristic - > end_handle = little_endian_read_16 ( packet , 8 ) ;
characteristic - > properties = little_endian_read_16 ( packet , 10 ) ;
2015-10-15 15:15:54 +02:00
characteristic - > uuid16 = 0 ;
2016-02-11 14:37:22 +01:00
reverse_128 ( & packet [ 12 ] , characteristic - > uuid128 ) ;
2016-02-10 17:12:50 +01:00
if ( uuid_has_bluetooth_prefix ( characteristic - > uuid128 ) ) {
2016-02-10 17:03:30 +01:00
characteristic - > uuid16 = big_endian_read_32 ( characteristic - > uuid128 , 0 ) ;
2015-10-15 15:15:54 +02:00
}
}
2016-02-04 17:58:00 +01:00
void handle_gatt_client_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) {
2015-04-23 21:40:15 +02:00
le_service_t service ;
le_characteristic_t characteristic ;
2015-10-15 15:15:54 +02:00
switch ( packet [ 0 ] ) {
2016-01-30 23:58:36 +01:00
case GATT_EVENT_SERVICE_QUERY_RESULT : \
2015-10-15 15:15:54 +02:00
extract_service ( & service , packet ) ;
2015-04-25 23:25:16 +02:00
dump_service ( & service ) ;
services [ service_count + + ] = service ;
2015-04-23 21:40:15 +02:00
break ;
2016-01-30 23:58:36 +01:00
case GATT_EVENT_CHARACTERISTIC_QUERY_RESULT :
2015-10-15 15:15:54 +02:00
extract_characteristic ( & characteristic , packet ) ;
2015-04-25 23:25:16 +02:00
dump_characteristic ( & characteristic ) ;
break ;
2016-01-30 23:58:36 +01:00
case GATT_EVENT_QUERY_COMPLETE :
2015-04-25 23:25:16 +02:00
if ( search_services ) {
2016-01-30 23:58:36 +01:00
// GATT_EVENT_QUERY_COMPLETE of search services
2015-04-25 23:25:16 +02:00
service_index = 0 ;
2016-02-10 17:01:26 +01:00
printf ( " \n GATT browser - CHARACTERISTIC for SERVICE %s \n " , uuid128_to_str ( service . uuid128 ) ) ;
2015-04-25 23:25:16 +02:00
search_services = 0 ;
gatt_client_discover_characteristics_for_service ( gc_id , gc_handle , & services [ service_index ] ) ;
} else {
2016-01-30 23:58:36 +01:00
// GATT_EVENT_QUERY_COMPLETE of search characteristics
2015-04-25 23:25:16 +02:00
if ( service_index < service_count ) {
service = services [ service_index + + ] ;
2016-02-10 17:01:26 +01:00
printf ( " \n GATT browser - CHARACTERISTIC for SERVICE %s, [0x%04x-0x%04x] \n " ,
uuid128_to_str ( service . uuid128 ) , service . start_group_handle , service . end_group_handle ) ;
2015-04-25 23:25:16 +02:00
gatt_client_discover_characteristics_for_service ( gc_id , gc_handle , & service ) ;
2015-04-23 21:40:15 +02:00
break ;
2015-04-25 23:25:16 +02:00
}
service_index = 0 ;
gap_disconnect ( gc_handle ) ;
2015-04-23 21:40:15 +02:00
}
break ;
default :
break ;
}
}
/* LISTING_END */
2014-05-30 15:14:31 +00:00
2015-11-06 19:43:35 +01:00
static void usage ( const char * name ) {
2014-06-20 10:43:39 +00:00
fprintf ( stderr , " \n Usage: %s [-a|--address aa:bb:cc:dd:ee:ff] \n " , name ) ;
2014-07-04 08:56:25 +00:00
fprintf ( stderr , " If no argument is provided, GATT browser will start scanning and connect to the first found device. \n To connect to a specific device use argument [-a]. \n \n " ) ;
2014-06-20 10:43:39 +00:00
}
2014-11-14 20:42:29 +00:00
int btstack_main ( int argc , const char * argv [ ] ) ;
int btstack_main ( int argc , const char * argv [ ] ) {
2014-06-20 10:43:39 +00:00
int arg = 1 ;
cmdline_addr_found = 0 ;
while ( arg < argc ) {
if ( ! strcmp ( argv [ arg ] , " -a " ) | | ! strcmp ( argv [ arg ] , " --address " ) ) {
arg + + ;
2016-02-11 14:19:26 +01:00
cmdline_addr_found = sscanf_bd_addr ( ( uint8_t * ) argv [ arg ] , cmdline_addr ) ;
2014-06-20 10:43:39 +00:00
arg + + ;
continue ;
}
usage ( argv [ 0 ] ) ;
return 0 ;
}
2015-04-23 21:40:15 +02:00
gatt_client_setup ( ) ;
2014-11-14 20:42:29 +00:00
2014-05-30 15:14:31 +00:00
// turn on!
hci_power_control ( HCI_POWER_ON ) ;
return 0 ;
}
2015-04-23 21:40:15 +02:00
/* EXAMPLE_END */
2014-05-30 15:14:31 +00:00