2014-09-26 08:45:34 +00:00
/*
2015-02-06 11:25:18 +00:00
* Copyright ( C ) 2014 BlueKitchen GmbH
2014-09-26 08:45:34 +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-09-26 08:45:34 +00:00
*
2015-02-06 11:25:18 +00:00
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
2014-09-26 08:45:34 +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-09-26 08:45:34 +00:00
*/
2014-10-16 09:15:23 +00:00
// *****************************************************************************
2014-09-26 08:45:34 +00:00
//
// BLE Client
//
2014-10-16 09:15:23 +00:00
// *****************************************************************************
2014-09-26 08:45:34 +00:00
# include <stdint.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
2016-02-18 15:16:46 +00:00
# include "btstack.h"
2014-09-26 08:45:34 +00:00
typedef struct advertising_report {
uint8_t type ;
uint8_t event_type ;
uint8_t address_type ;
bd_addr_t address ;
uint8_t rssi ;
uint8_t length ;
2016-04-01 14:08:15 +00:00
const uint8_t * data ;
2014-09-26 08:45:34 +00:00
} advertising_report_t ;
typedef enum {
TC_IDLE ,
TC_W4_SCAN_RESULT ,
TC_W4_CONNECT ,
TC_W4_SERVICE_RESULT ,
TC_W4_CHARACTERISTIC_RESULT ,
TC_W4_BATTERY_DATA
} gc_state_t ;
2016-06-03 13:54:29 +00:00
static int blacklist_index = 0 ;
static bd_addr_t blacklist [ 20 ] ;
static advertising_report_t report ;
2016-02-12 13:22:33 +00:00
static void handle_gatt_client_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) ;
2014-09-26 08:45:34 +00:00
static bd_addr_t cmdline_addr = { } ;
static int cmdline_addr_found = 0 ;
2016-02-19 10:11:57 +00:00
static hci_con_handle_t connection_handle ;
2014-09-26 08:45:34 +00:00
static uint16_t battery_service_uuid = 0x180F ;
static uint16_t battery_level_characteristic_uuid = 0x2a19 ;
2016-02-18 14:29:33 +00:00
static gatt_client_service_t battery_service ;
static gatt_client_characteristic_t config_characteristic ;
2014-09-26 08:45:34 +00:00
static gc_state_t state = TC_IDLE ;
2016-02-03 20:55:36 +00:00
static btstack_packet_callback_registration_t hci_event_callback_registration ;
2014-09-26 08:45:34 +00:00
static void printUUID ( uint8_t * uuid128 , uint16_t uuid16 ) {
if ( uuid16 ) {
printf ( " %04x " , uuid16 ) ;
} else {
2016-02-10 16:01:26 +00:00
printf ( " %s " , uuid128_to_str ( uuid128 ) ) ;
2014-09-26 08:45:34 +00:00
}
}
2016-06-03 13:58:50 +00:00
static int blacklist_size ( void ) {
2016-06-03 13:54:29 +00:00
return sizeof ( blacklist ) / sizeof ( bd_addr_t ) ;
}
static int blacklist_contains ( bd_addr_t addr ) {
int i ;
for ( i = 0 ; i < blacklist_size ( ) ; i + + ) {
if ( bd_addr_cmp ( addr , blacklist [ i ] ) = = 0 ) return 1 ;
}
return 0 ;
}
static void add_to_blacklist ( bd_addr_t addr ) {
printf ( " %s added to blacklist (no battery service found \n " , bd_addr_to_str ( addr ) ) ;
bd_addr_copy ( blacklist [ blacklist_index ] , addr ) ;
blacklist_index = ( blacklist_index + 1 ) % blacklist_size ( ) ;
}
2014-09-26 08:45:34 +00:00
static void dump_advertising_report ( advertising_report_t * e ) {
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 ) ;
printf_hexdump ( e - > data , e - > length ) ;
}
2015-10-15 13:15:54 +00:00
static void dump_characteristic_value ( uint8_t * blob , uint16_t blob_length ) {
printf ( " * characteristic value of length %d *** " , blob_length ) ;
printf_hexdump ( blob , blob_length ) ;
2014-09-26 08:45:34 +00:00
printf ( " \n " ) ;
}
2016-02-18 14:29:33 +00:00
static void dump_characteristic ( gatt_client_characteristic_t * characteristic ) {
2014-09-26 08:45:34 +00:00
printf ( " * characteristic: [0x%04x-0x%04x-0x%04x], properties 0x%02x, uuid " ,
characteristic - > start_handle , characteristic - > value_handle , characteristic - > end_handle , characteristic - > properties ) ;
printUUID ( characteristic - > uuid128 , characteristic - > uuid16 ) ;
printf ( " \n " ) ;
}
2016-02-18 14:29:33 +00:00
static void dump_service ( gatt_client_service_t * service ) {
2014-09-26 08:45:34 +00:00
printf ( " * service: [0x%04x-0x%04x], uuid " , service - > start_group_handle , service - > end_group_handle ) ;
printUUID ( service - > uuid128 , service - > uuid16 ) ;
printf ( " \n " ) ;
}
2015-10-15 13:15:54 +00:00
2016-02-04 16:58:00 +00:00
static void handle_gatt_client_event ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) {
2016-06-03 13:54:29 +00:00
int status ;
uint8_t battery_level ;
2015-10-15 13:15:54 +00:00
2014-09-26 08:45:34 +00:00
switch ( state ) {
case TC_W4_SERVICE_RESULT :
2016-02-19 13:52:36 +00:00
switch ( hci_event_packet_get_type ( packet ) ) {
2016-01-30 22:58:36 +00:00
case GATT_EVENT_SERVICE_QUERY_RESULT :
2016-02-18 15:16:46 +00:00
gatt_event_service_query_result_get_service ( packet , & battery_service ) ;
2014-09-26 08:45:34 +00:00
dump_service ( & battery_service ) ;
break ;
2016-01-30 22:58:36 +00:00
case GATT_EVENT_QUERY_COMPLETE :
2016-06-03 13:54:29 +00:00
if ( packet [ 4 ] ! = 0 ) {
printf ( " SERVICE_QUERY_RESULT - Error status %x. \n " , packet [ 4 ] ) ;
add_to_blacklist ( report . address ) ;
gap_disconnect ( connection_handle ) ;
2014-10-31 15:58:44 +00:00
break ;
}
2014-09-26 08:45:34 +00:00
state = TC_W4_CHARACTERISTIC_RESULT ;
2016-06-03 13:54:29 +00:00
printf ( " \n Search for battery level characteristic. \n " ) ;
2016-02-19 10:11:57 +00:00
gatt_client_discover_characteristics_for_service_by_uuid16 ( handle_gatt_client_event , connection_handle , & battery_service , battery_level_characteristic_uuid ) ;
2014-09-26 08:45:34 +00:00
break ;
default :
break ;
}
break ;
case TC_W4_CHARACTERISTIC_RESULT :
2016-02-19 13:52:36 +00:00
switch ( hci_event_packet_get_type ( packet ) ) {
2016-01-30 22:58:36 +00:00
case GATT_EVENT_CHARACTERISTIC_QUERY_RESULT :
2016-02-18 15:16:46 +00:00
gatt_event_characteristic_query_result_get_characteristic ( packet , & config_characteristic ) ;
2014-09-26 08:45:34 +00:00
dump_characteristic ( & config_characteristic ) ;
break ;
2016-01-30 22:58:36 +00:00
case GATT_EVENT_QUERY_COMPLETE :
2016-06-03 13:54:29 +00:00
if ( packet [ 4 ] ! = 0 ) {
printf ( " CHARACTERISTIC_QUERY_RESULT - Error status %x. \n " , packet [ 4 ] ) ;
add_to_blacklist ( report . address ) ;
gap_disconnect ( connection_handle ) ;
break ;
}
2014-09-26 08:45:34 +00:00
state = TC_W4_BATTERY_DATA ;
2016-06-03 13:54:29 +00:00
printf ( " \n Configure battery level characteristic for notify. \n " ) ;
status = gatt_client_write_client_characteristic_configuration ( handle_gatt_client_event , connection_handle , & config_characteristic , GATT_CLIENT_CHARACTERISTICS_CONFIGURATION_NOTIFICATION ) ;
if ( status ! = 0 ) {
printf ( " \n Notification not supported. Query value of characteristic. \n " ) ;
gatt_client_read_value_of_characteristic ( handle_gatt_client_event , connection_handle , & config_characteristic ) ;
}
2014-09-26 08:45:34 +00:00
break ;
default :
break ;
}
break ;
case TC_W4_BATTERY_DATA :
2016-06-03 13:54:29 +00:00
switch ( hci_event_packet_get_type ( packet ) ) {
case GATT_EVENT_NOTIFICATION :
printf ( " \n Battery Data: \n " ) ;
dump_characteristic_value ( & packet [ 8 ] , little_endian_read_16 ( packet , 6 ) ) ;
break ;
case GATT_EVENT_CHARACTERISTIC_VALUE_QUERY_RESULT :
if ( gatt_event_characteristic_value_query_result_get_value_length ( packet ) < 1 ) break ;
battery_level = gatt_event_characteristic_value_query_result_get_value ( packet ) [ 0 ] ;
printf ( " Battry level %d \n " , battery_level ) ;
break ;
case GATT_EVENT_QUERY_COMPLETE :
if ( packet [ 4 ] ! = 0 ) {
printf ( " CHARACTERISTIC_VALUE_QUERY_RESULT - Error status %x. \n " , packet [ 4 ] ) ;
break ;
}
// Use timer if repeated request is needed and notification is not supperted
gap_disconnect ( connection_handle ) ;
break ;
default :
printf ( " Unknown packet type %x \n " , hci_event_packet_get_type ( packet ) ) ;
break ;
2014-09-26 08:45:34 +00:00
}
break ;
default :
printf ( " error \n " ) ;
break ;
}
}
2016-06-03 13:54:29 +00:00
static void fill_advertising_report_from_packet ( advertising_report_t * adv_report , uint8_t * packet ) {
gap_event_advertising_report_get_address ( packet , adv_report - > address ) ;
adv_report - > event_type = gap_event_advertising_report_get_advertising_event_type ( packet ) ;
adv_report - > address_type = gap_event_advertising_report_get_address_type ( packet ) ;
adv_report - > rssi = gap_event_advertising_report_get_rssi ( packet ) ;
adv_report - > length = gap_event_advertising_report_get_data_length ( packet ) ;
adv_report - > data = gap_event_advertising_report_get_data ( packet ) ;
2014-09-26 08:45:34 +00:00
}
2016-02-04 16:45:02 +00:00
static void hci_event_handler ( uint8_t packet_type , uint16_t channel , uint8_t * packet , uint16_t size ) {
2014-09-26 08:45:34 +00:00
if ( packet_type ! = HCI_EVENT_PACKET ) return ;
2016-06-03 13:54:29 +00:00
2016-02-19 13:52:36 +00:00
uint8_t event = hci_event_packet_get_type ( packet ) ;
2014-09-26 08:45:34 +00:00
switch ( event ) {
case BTSTACK_EVENT_STATE :
// BTstack activated, get started
2016-04-01 14:23:28 +00:00
if ( btstack_event_state_get_state ( packet ) ! = HCI_STATE_WORKING ) break ;
2014-09-26 08:45:34 +00:00
if ( cmdline_addr_found ) {
2016-06-03 13:54:29 +00:00
printf ( " Connect to %s \n " , bd_addr_to_str ( cmdline_addr ) ) ;
2014-09-26 08:45:34 +00:00
state = TC_W4_CONNECT ;
2016-02-12 16:04:41 +00:00
gap_connect ( cmdline_addr , 0 ) ;
2014-09-26 08:45:34 +00:00
break ;
}
2016-06-03 13:54:29 +00:00
printf ( " Start scanning! \n " ) ;
2014-09-26 08:45:34 +00:00
state = TC_W4_SCAN_RESULT ;
2016-02-12 16:04:41 +00:00
gap_set_scan_parameters ( 0 , 0x0030 , 0x0030 ) ;
gap_start_scan ( ) ;
2014-09-26 08:45:34 +00:00
break ;
2016-03-07 16:19:53 +00:00
case GAP_EVENT_ADVERTISING_REPORT :
2014-09-26 08:45:34 +00:00
if ( state ! = TC_W4_SCAN_RESULT ) return ;
fill_advertising_report_from_packet ( & report , packet ) ;
2016-06-03 13:54:29 +00:00
if ( blacklist_contains ( report . address ) ) {
break ;
}
2016-04-01 14:08:15 +00:00
dump_advertising_report ( & report ) ;
2014-09-26 08:45:34 +00:00
// stop scanning, and connect to the device
state = TC_W4_CONNECT ;
2016-02-12 16:04:41 +00:00
gap_stop_scan ( ) ;
2016-06-03 13:54:29 +00:00
printf ( " Stop scan. Connect to device with addr %s. \n " , bd_addr_to_str ( report . address ) ) ;
2016-02-12 16:04:41 +00:00
gap_connect ( report . address , report . address_type ) ;
2016-06-03 13:54:29 +00:00
2014-09-26 08:45:34 +00:00
break ;
case HCI_EVENT_LE_META :
// wait for connection complete
2016-04-01 14:28:01 +00:00
if ( hci_event_le_meta_get_subevent_code ( packet ) ! = HCI_SUBEVENT_LE_CONNECTION_COMPLETE ) break ;
2014-09-26 08:45:34 +00:00
if ( state ! = TC_W4_CONNECT ) return ;
2016-02-19 10:11:57 +00:00
connection_handle = hci_subevent_le_connection_complete_get_connection_handle ( packet ) ;
2014-09-26 08:45:34 +00:00
// initialize gatt client context with handle, and add it to the list of active clients
// query primary services
2016-03-01 09:06:45 +00:00
printf ( " \n Search for battery service. \n " ) ;
2014-09-26 08:45:34 +00:00
state = TC_W4_SERVICE_RESULT ;
2016-02-19 10:11:57 +00:00
gatt_client_discover_primary_services_by_uuid16 ( handle_gatt_client_event , connection_handle , battery_service_uuid ) ;
2014-09-26 08:45:34 +00:00
break ;
case HCI_EVENT_DISCONNECTION_COMPLETE :
2016-06-03 13:54:29 +00:00
if ( cmdline_addr_found ) {
printf ( " \n Disconnected %s \n " , bd_addr_to_str ( cmdline_addr ) ) ;
exit ( 0 ) ;
}
printf ( " \n Disconnected %s \n " , bd_addr_to_str ( report . address ) ) ;
printf ( " Restart scan. \n " ) ;
state = TC_W4_SCAN_RESULT ;
gap_start_scan ( ) ;
2014-09-26 08:45:34 +00:00
break ;
default :
break ;
}
}
2015-11-06 18:43:35 +00:00
static void usage ( const char * name ) {
2016-06-03 13:54:29 +00:00
fprintf ( stderr , " \n Usage: %s [-a|--address aa:bb:cc:dd:ee:ff] \n " , name ) ;
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-09-26 08:45:34 +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-09-26 08:45:34 +00:00
int arg = 1 ;
cmdline_addr_found = 0 ;
while ( arg < argc ) {
2016-06-03 13:54:29 +00:00
if ( ! strcmp ( argv [ arg ] , " -a " ) | | ! strcmp ( argv [ arg ] , " --address " ) ) {
2014-09-26 08:45:34 +00:00
arg + + ;
2016-06-03 13:54:29 +00:00
cmdline_addr_found = sscanf_bd_addr ( argv [ arg ] , cmdline_addr ) ;
arg + + ;
if ( ! cmdline_addr_found ) exit ( 1 ) ;
2014-09-26 08:45:34 +00:00
continue ;
}
usage ( argv [ 0 ] ) ;
return 0 ;
2016-06-03 13:54:29 +00:00
}
2014-09-26 08:45:34 +00:00
2016-02-03 20:55:36 +00:00
hci_event_callback_registration . callback = & hci_event_handler ;
hci_add_event_handler ( & hci_event_callback_registration ) ;
2014-11-14 20:42:29 +00:00
l2cap_init ( ) ;
gatt_client_init ( ) ;
sm_init ( ) ;
sm_set_io_capabilities ( IO_CAPABILITY_NO_INPUT_NO_OUTPUT ) ;
2014-09-26 08:45:34 +00:00
// turn on!
hci_power_control ( HCI_POWER_ON ) ;
2015-03-31 12:01:58 +00:00
2014-09-26 08:45:34 +00:00
return 0 ;
}