2009-10-29 20:25:42 +00:00
|
|
|
/*
|
2015-02-06 16:19:27 +00:00
|
|
|
* Copyright (C) 2014 BlueKitchen GmbH
|
2009-10-29 20:25:42 +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 16:19:27 +00:00
|
|
|
* 4. Any redistribution, use, or modification is done solely for
|
|
|
|
* personal benefit and not for any commercial purpose or for
|
|
|
|
* monetary gain.
|
2009-10-29 20:25:42 +00:00
|
|
|
*
|
2015-02-06 16:19:27 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
|
2009-10-29 20:25:42 +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 16:19:27 +00:00
|
|
|
* Please inquire about commercial licensing options at
|
|
|
|
* contact@bluekitchen-gmbh.com
|
|
|
|
*
|
2009-10-29 20:25:42 +00:00
|
|
|
*/
|
|
|
|
|
2009-07-23 21:25:39 +00:00
|
|
|
/*
|
|
|
|
* hci_cmds.h
|
|
|
|
*
|
|
|
|
* Created by Matthias Ringwald on 7/23/09.
|
|
|
|
*/
|
|
|
|
|
2014-01-19 16:30:17 +00:00
|
|
|
#ifndef __HCI_CMDS_H
|
|
|
|
#define __HCI_CMDS_H
|
2009-07-23 21:25:39 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-08-08 18:17:48 +00:00
|
|
|
#if defined __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2015-02-27 14:00:32 +00:00
|
|
|
|
2009-10-05 20:59:24 +00:00
|
|
|
/**
|
|
|
|
* packet types - used in BTstack and over the H4 UART interface
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_COMMAND_DATA_PACKET 0x01
|
|
|
|
#define HCI_ACL_DATA_PACKET 0x02
|
|
|
|
#define HCI_SCO_DATA_PACKET 0x03
|
|
|
|
#define HCI_EVENT_PACKET 0x04
|
2009-10-05 20:59:24 +00:00
|
|
|
|
|
|
|
// extension for client/server communication
|
|
|
|
#define DAEMON_EVENT_PACKET 0x05
|
2012-02-20 19:12:47 +00:00
|
|
|
|
2009-10-05 20:59:24 +00:00
|
|
|
// L2CAP data
|
|
|
|
#define L2CAP_DATA_PACKET 0x06
|
|
|
|
|
|
|
|
// RFCOMM data
|
2012-01-29 17:10:28 +00:00
|
|
|
#define RFCOMM_DATA_PACKET 0x07
|
2009-10-05 20:59:24 +00:00
|
|
|
|
2012-01-29 17:10:28 +00:00
|
|
|
// Attribute protocol data
|
|
|
|
#define ATT_DATA_PACKET 0x08
|
|
|
|
|
|
|
|
// Security Manager protocol data
|
|
|
|
#define SM_DATA_PACKET 0x09
|
2013-10-18 10:19:57 +00:00
|
|
|
|
|
|
|
// SDP query result
|
|
|
|
// format: type (8), record_id (16), attribute_id (16), attribute_length (16), attribute_value (max 1k)
|
|
|
|
#define SDP_CLIENT_PACKET 0x0a
|
|
|
|
|
2014-10-27 11:49:40 +00:00
|
|
|
// BNEP data
|
|
|
|
#define BNEP_DATA_PACKET 0x0b
|
|
|
|
|
2015-02-26 15:22:38 +00:00
|
|
|
// Unicast Connectionless Data
|
|
|
|
#define UCD_DATA_PACKET 0x0c
|
|
|
|
|
2012-02-20 19:12:47 +00:00
|
|
|
// debug log messages
|
|
|
|
#define LOG_MESSAGE_PACKET 0xfc
|
|
|
|
|
2012-01-29 17:10:28 +00:00
|
|
|
|
2010-03-04 23:22:39 +00:00
|
|
|
// Fixed PSM numbers
|
2010-02-28 21:36:57 +00:00
|
|
|
#define PSM_SDP 0x01
|
|
|
|
#define PSM_RFCOMM 0x03
|
2010-03-04 23:22:39 +00:00
|
|
|
#define PSM_HID_CONTROL 0x11
|
|
|
|
#define PSM_HID_INTERRUPT 0x13
|
2014-10-20 10:06:32 +00:00
|
|
|
#define PSM_BNEP 0x0F
|
2009-10-05 20:59:24 +00:00
|
|
|
|
2009-07-23 21:43:37 +00:00
|
|
|
// Events from host controller to host
|
2014-06-26 14:22:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 1
|
|
|
|
* @param status
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_INQUIRY_COMPLETE 0x01
|
2014-06-26 14:22:31 +00:00
|
|
|
// no format yet, can contain multiple results
|
2014-12-03 22:35:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 1B11132
|
|
|
|
* @param num_responses
|
|
|
|
* @param bd_addr
|
|
|
|
* @param page_scan_repetition_mode
|
|
|
|
* @param reserved1
|
|
|
|
* @param reserved2
|
|
|
|
* @param class_of_device
|
|
|
|
* @param clock_offset
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_INQUIRY_RESULT 0x02
|
2014-12-03 22:35:27 +00:00
|
|
|
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format 12B11
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
* @param bd_addr
|
|
|
|
* @param link_type
|
|
|
|
* @param encryption_enabled
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_CONNECTION_COMPLETE 0x03
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format B31
|
|
|
|
* @param bd_addr
|
|
|
|
* @param class_of_device
|
|
|
|
* @param link_type
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_CONNECTION_REQUEST 0x04
|
2014-05-03 22:18:29 +00:00
|
|
|
/**
|
|
|
|
* @format 121
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
* @param reason
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_DISCONNECTION_COMPLETE 0x05
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format 12
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
*/
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_AUTHENTICATION_COMPLETE_EVENT 0x06
|
2014-12-11 13:51:00 +00:00
|
|
|
/**
|
|
|
|
* @format 1BN
|
|
|
|
* @param status
|
|
|
|
* @param bd_addr
|
|
|
|
* @param remote_name
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE 0x07
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format 121
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
* @param encryption_enabled
|
|
|
|
*/
|
2011-03-19 15:34:55 +00:00
|
|
|
#define HCI_EVENT_ENCRYPTION_CHANGE 0x08
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format 12
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
*/
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE 0x09
|
2014-06-26 14:22:31 +00:00
|
|
|
/**
|
|
|
|
* @format 121
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
* @param key_flag
|
|
|
|
*/
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_MASTER_LINK_KEY_COMPLETE 0x0A
|
|
|
|
#define HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE 0x0B
|
|
|
|
#define HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE 0x0C
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_QOS_SETUP_COMPLETE 0x0D
|
2014-09-05 10:33:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 12R
|
|
|
|
* @param num_hci_command_packets
|
|
|
|
* @param command_opcode
|
|
|
|
* @param return_parameters
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_COMMAND_COMPLETE 0x0E
|
2014-09-05 10:33:57 +00:00
|
|
|
/**
|
|
|
|
* @format 112
|
|
|
|
* @param status
|
|
|
|
* @param num_hci_command_packets
|
|
|
|
* @param command_opcode
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_COMMAND_STATUS 0x0F
|
2014-06-26 14:22:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 121
|
|
|
|
* @param hardware_code
|
|
|
|
*/
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_HARDWARE_ERROR 0x10
|
2014-06-26 14:22:31 +00:00
|
|
|
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_FLUSH_OCCURED 0x11
|
2015-10-26 21:41:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 1B1
|
|
|
|
* @param status
|
|
|
|
* @param bd_addr
|
|
|
|
* @param role
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_ROLE_CHANGE 0x12
|
2015-10-26 21:41:09 +01:00
|
|
|
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS 0x13
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_MODE_CHANGE_EVENT 0x14
|
|
|
|
#define HCI_EVENT_RETURN_LINK_KEYS 0x15
|
|
|
|
#define HCI_EVENT_PIN_CODE_REQUEST 0x16
|
|
|
|
#define HCI_EVENT_LINK_KEY_REQUEST 0x17
|
|
|
|
#define HCI_EVENT_LINK_KEY_NOTIFICATION 0x18
|
|
|
|
#define HCI_EVENT_DATA_BUFFER_OVERFLOW 0x1A
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_MAX_SLOTS_CHANGED 0x1B
|
2009-07-23 21:43:37 +00:00
|
|
|
#define HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE 0x1C
|
2009-08-09 20:18:34 +00:00
|
|
|
#define HCI_EVENT_PACKET_TYPE_CHANGED 0x1D
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 1B11321
|
|
|
|
* @param num_responses
|
|
|
|
* @param bd_addr
|
|
|
|
* @param page_scan_repetition_mode
|
|
|
|
* @param reserved
|
|
|
|
* @param class_of_device
|
|
|
|
* @param clock_offset
|
|
|
|
* @param rssi
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_INQUIRY_RESULT_WITH_RSSI 0x22
|
2014-11-28 14:52:16 +00:00
|
|
|
|
2015-02-13 12:01:14 +00:00
|
|
|
/**
|
|
|
|
* @format 1HB111221
|
|
|
|
* @param status
|
|
|
|
* @param handle
|
|
|
|
* @param bd_addr
|
|
|
|
* @param link_type
|
|
|
|
* @param transmission_interval
|
|
|
|
* @param retransmission_interval
|
|
|
|
* @param rx_packet_length
|
|
|
|
* @param tx_packet_length
|
|
|
|
* @param air_mode
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE 0x2C
|
2015-02-13 12:01:14 +00:00
|
|
|
|
2014-12-03 22:35:27 +00:00
|
|
|
// TODO: serialize extended_inquiry_response and provide parser
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 1B11321
|
|
|
|
* @param num_responses
|
|
|
|
* @param bd_addr
|
|
|
|
* @param page_scan_repetition_mode
|
|
|
|
* @param reserved
|
|
|
|
* @param class_of_device
|
|
|
|
* @param clock_offset
|
|
|
|
* @param rssi
|
|
|
|
*/
|
2009-08-24 21:56:12 +00:00
|
|
|
#define HCI_EVENT_EXTENDED_INQUIRY_RESPONSE 0x2F
|
2014-11-28 14:52:16 +00:00
|
|
|
|
2015-08-13 12:52:18 +02:00
|
|
|
/**
|
|
|
|
* @format 1H
|
|
|
|
* @param status
|
|
|
|
* @param handle
|
|
|
|
*/
|
|
|
|
#define HCI_EVENT_ENCRYPTION_KEY_REFRESH_COMPLETE 0x30
|
|
|
|
|
2013-08-30 12:18:50 +00:00
|
|
|
#define HCI_EVENT_IO_CAPABILITY_REQUEST 0x31
|
|
|
|
#define HCI_EVENT_IO_CAPABILITY_RESPONSE 0x32
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HCI_EVENT_USER_CONFIRMATION_REQUEST 0x33
|
|
|
|
#define HCI_EVENT_USER_PASSKEY_REQUEST 0x34
|
|
|
|
#define HCI_EVENT_REMOTE_OOB_DATA_REQUEST 0x35
|
|
|
|
#define HCI_EVENT_SIMPLE_PAIRING_COMPLETE 0x36
|
|
|
|
|
2011-10-01 14:21:26 +00:00
|
|
|
#define HCI_EVENT_LE_META 0x3E
|
2009-07-23 21:43:37 +00:00
|
|
|
|
2014-05-03 22:18:29 +00:00
|
|
|
/**
|
|
|
|
* @format 11211B2221
|
|
|
|
* @param subevent_code
|
|
|
|
* @param status
|
|
|
|
* @param connection_handle
|
|
|
|
* @param role
|
|
|
|
* @param peer_address_type
|
|
|
|
* @param peer_address
|
|
|
|
* @param conn_interval
|
|
|
|
* @param conn_latency
|
|
|
|
* @param supervision_timeout
|
|
|
|
* @param master_clock_accuracy
|
|
|
|
*/
|
2011-10-01 14:21:26 +00:00
|
|
|
#define HCI_SUBEVENT_LE_CONNECTION_COMPLETE 0x01
|
|
|
|
#define HCI_SUBEVENT_LE_ADVERTISING_REPORT 0x02
|
|
|
|
#define HCI_SUBEVENT_LE_CONNECTION_UPDATE_COMPLETE 0x03
|
|
|
|
#define HCI_SUBEVENT_LE_READ_REMOTE_USED_FEATURES_COMPLETE 0x04
|
|
|
|
#define HCI_SUBEVENT_LE_LONG_TERM_KEY_REQUEST 0x05
|
|
|
|
|
2009-09-29 19:40:55 +00:00
|
|
|
// last used HCI_EVENT in 2.1 is 0x3d
|
2015-02-27 14:00:32 +00:00
|
|
|
// last used HCI_EVENT in 4.1 is 0x57
|
2014-05-03 22:18:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 1
|
|
|
|
* @param state
|
|
|
|
*/
|
2009-09-30 20:29:30 +00:00
|
|
|
#define BTSTACK_EVENT_STATE 0x60
|
2009-08-09 18:39:53 +00:00
|
|
|
|
2009-08-15 21:31:23 +00:00
|
|
|
// data: event(8), len(8), nr hci connections
|
2009-09-30 20:29:30 +00:00
|
|
|
#define BTSTACK_EVENT_NR_CONNECTIONS_CHANGED 0x61
|
2009-08-09 18:39:53 +00:00
|
|
|
|
2014-09-25 09:19:53 +00:00
|
|
|
/**
|
|
|
|
* @format
|
|
|
|
*/
|
2009-09-30 20:29:30 +00:00
|
|
|
#define BTSTACK_EVENT_POWERON_FAILED 0x62
|
2009-09-13 20:42:43 +00:00
|
|
|
|
2014-11-17 22:13:15 +00:00
|
|
|
/**
|
|
|
|
* @format 112
|
|
|
|
* @param major
|
|
|
|
* @param minor
|
|
|
|
@ @param revision
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define BTSTACK_EVENT_VERSION 0x63
|
2010-01-09 11:01:23 +00:00
|
|
|
|
2010-01-09 22:26:45 +00:00
|
|
|
// data: system bluetooth on/off (bool)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define BTSTACK_EVENT_SYSTEM_BLUETOOTH_ENABLED 0x64
|
2010-01-09 22:26:45 +00:00
|
|
|
|
2011-01-10 21:11:58 +00:00
|
|
|
// data: event (8), len(8), status (8) == 0, address (48), name (1984 bits = 248 bytes)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define BTSTACK_EVENT_REMOTE_NAME_CACHED 0x65
|
2010-09-01 21:25:40 +00:00
|
|
|
|
2011-01-10 21:11:58 +00:00
|
|
|
// data: discoverable enabled (bool)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define BTSTACK_EVENT_DISCOVERABLE_ENABLED 0x66
|
|
|
|
|
|
|
|
// Daemon Events used internally
|
|
|
|
|
|
|
|
// data: event(8)
|
|
|
|
#define DAEMON_EVENT_CONNECTION_OPENED 0x68
|
|
|
|
|
|
|
|
// data: event(8)
|
|
|
|
#define DAEMON_EVENT_CONNECTION_CLOSED 0x69
|
|
|
|
|
|
|
|
// data: event(8), nr_connections(8)
|
|
|
|
#define DAEMON_NR_CONNECTIONS_CHANGED 0x6A
|
|
|
|
|
|
|
|
// data: event(8)
|
|
|
|
#define DAEMON_EVENT_NEW_RFCOMM_CREDITS 0x6B
|
|
|
|
|
|
|
|
// data: event(8)
|
|
|
|
#define DAEMON_EVENT_HCI_PACKET_SENT 0x6C
|
2011-01-10 21:11:58 +00:00
|
|
|
|
2011-03-19 18:27:14 +00:00
|
|
|
// L2CAP EVENTS
|
2015-02-27 14:00:32 +00:00
|
|
|
|
2014-01-10 17:35:17 +00:00
|
|
|
// data: event (8), len(8), status (8), address(48), handle (16), psm (16), local_cid(16), remote_cid (16), local_mtu(16), remote_mtu(16), flush_timeout(16)
|
2009-09-29 20:10:24 +00:00
|
|
|
#define L2CAP_EVENT_CHANNEL_OPENED 0x70
|
2009-09-29 19:40:55 +00:00
|
|
|
|
|
|
|
// data: event (8), len(8), channel (16)
|
2009-09-29 20:10:24 +00:00
|
|
|
#define L2CAP_EVENT_CHANNEL_CLOSED 0x71
|
2009-09-29 19:40:55 +00:00
|
|
|
|
2012-01-15 21:28:42 +00:00
|
|
|
// data: event (8), len(8), address(48), handle (16), psm (16), local_cid(16), remote_cid (16)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define L2CAP_EVENT_INCOMING_CONNECTION 0x72
|
2010-01-25 20:25:20 +00:00
|
|
|
|
2009-09-29 19:40:55 +00:00
|
|
|
// data: event(8), len(8), handle(16)
|
2010-01-25 20:25:20 +00:00
|
|
|
#define L2CAP_EVENT_TIMEOUT_CHECK 0x73
|
|
|
|
|
2010-08-23 20:59:46 +00:00
|
|
|
// data: event(8), len(8), local_cid(16), credits(8)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define L2CAP_EVENT_CREDITS 0x74
|
2010-07-29 19:35:34 +00:00
|
|
|
|
2011-11-09 16:07:23 +00:00
|
|
|
// data: event(8), len(8), status (8), psm (16)
|
|
|
|
#define L2CAP_EVENT_SERVICE_REGISTERED 0x75
|
|
|
|
|
2014-08-08 20:52:02 +00:00
|
|
|
// data: event(8), len(8), handle(16), interval min(16), interval max(16), latency(16), timeout multiplier(16)
|
|
|
|
#define L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_REQUEST 0x76
|
|
|
|
|
|
|
|
// data: event(8), len(8), handle(16), result (16) (0 == ok, 1 == fail)
|
|
|
|
#define L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_RESPONSE 0x77
|
2011-04-30 20:30:05 +00:00
|
|
|
|
|
|
|
// RFCOMM EVENTS
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 1B2122
|
|
|
|
* @param status
|
|
|
|
* @param bd_addr
|
|
|
|
* @param con_handle
|
|
|
|
* @param server_channel
|
|
|
|
* @param rfcomm_cid
|
|
|
|
* @param max_frame_size
|
|
|
|
*/
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_EVENT_OPEN_CHANNEL_COMPLETE 0x80
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 2
|
|
|
|
* @param rfcomm_cid
|
|
|
|
*/
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_EVENT_CHANNEL_CLOSED 0x81
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format B12
|
|
|
|
* @param bd_addr
|
|
|
|
* @param server_channel
|
|
|
|
* @param rfcomm_cid
|
|
|
|
*/
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_EVENT_INCOMING_CONNECTION 0x82
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 21
|
|
|
|
* @param rfcomm_cid
|
|
|
|
* @param line_status
|
|
|
|
*/
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_EVENT_REMOTE_LINE_STATUS 0x83
|
2015-02-27 14:00:32 +00:00
|
|
|
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 21
|
|
|
|
* @param rfcomm_cid
|
|
|
|
* @param credits
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define RFCOMM_EVENT_CREDITS 0x84
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 11
|
|
|
|
* @param status
|
|
|
|
* @param channel_id
|
|
|
|
*/
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_EVENT_SERVICE_REGISTERED 0x85
|
|
|
|
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 11
|
|
|
|
* @param status
|
|
|
|
* @param server_channel_id
|
|
|
|
*/
|
2011-05-03 21:14:41 +00:00
|
|
|
#define RFCOMM_EVENT_PERSISTENT_CHANNEL 0x86
|
2011-06-18 21:16:07 +00:00
|
|
|
|
2014-01-11 22:12:05 +00:00
|
|
|
// data: event (8), len(8), rfcomm_cid (16), modem status (8)
|
2014-11-28 14:52:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format 21
|
|
|
|
* @param rfcomm_cid
|
|
|
|
* @param modem_status
|
|
|
|
*/
|
2014-01-11 22:12:05 +00:00
|
|
|
#define RFCOMM_EVENT_REMOTE_MODEM_STATUS 0x87
|
|
|
|
|
|
|
|
// data: event (8), len(8), rfcomm_cid (16), rpn_data_t (67)
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* TODO: format for variable data
|
|
|
|
* @param rfcomm_cid
|
|
|
|
* @param rpn_data
|
|
|
|
*/
|
2014-01-12 10:27:07 +00:00
|
|
|
#define RFCOMM_EVENT_PORT_CONFIGURATION 0x88
|
2014-01-11 22:12:05 +00:00
|
|
|
|
2011-06-18 21:16:07 +00:00
|
|
|
|
2011-05-12 19:12:02 +00:00
|
|
|
// data: event(8), len(8), status(8), service_record_handle(32)
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 14
|
|
|
|
* @param status
|
|
|
|
* @param service_record_handle
|
|
|
|
*/
|
2011-03-19 18:27:14 +00:00
|
|
|
#define SDP_SERVICE_REGISTERED 0x90
|
2009-08-02 13:20:32 +00:00
|
|
|
|
2013-04-26 20:17:43 +00:00
|
|
|
// data: event(8), len(8), status(8)
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* @format 1
|
|
|
|
* @param status
|
|
|
|
*/
|
2013-04-26 20:17:43 +00:00
|
|
|
#define SDP_QUERY_COMPLETE 0x91
|
|
|
|
|
|
|
|
// data: event(8), len(8), rfcomm channel(8), name(var)
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
2014-12-05 22:37:20 +00:00
|
|
|
* @format 1T
|
2014-11-28 14:52:16 +00:00
|
|
|
* @param rfcomm_channel
|
|
|
|
* @param name
|
2014-12-05 22:37:20 +00:00
|
|
|
* @brief SDP_QUERY_RFCOMM_SERVICE 0x92
|
2014-11-28 14:52:16 +00:00
|
|
|
*/
|
2013-04-26 20:17:43 +00:00
|
|
|
#define SDP_QUERY_RFCOMM_SERVICE 0x92
|
|
|
|
|
|
|
|
// data: event(8), len(8), record nr(16), attribute id(16), attribute value(var)
|
2014-11-28 14:52:16 +00:00
|
|
|
/**
|
|
|
|
* TODO: format for variable data
|
|
|
|
* @param record_nr
|
|
|
|
* @param attribute_id
|
|
|
|
* @param attribute_value
|
|
|
|
*/
|
2013-04-26 20:17:43 +00:00
|
|
|
#define SDP_QUERY_ATTRIBUTE_VALUE 0x93
|
2013-11-01 13:09:54 +00:00
|
|
|
|
2013-11-01 13:37:55 +00:00
|
|
|
// not provided by daemon, only used for internal testing
|
|
|
|
#define SDP_QUERY_SERVICE_RECORD_HANDLE 0x94
|
2013-11-14 15:55:07 +00:00
|
|
|
|
2014-05-03 22:18:29 +00:00
|
|
|
/**
|
2014-05-15 10:54:27 +00:00
|
|
|
* @format H1
|
2014-05-11 20:32:56 +00:00
|
|
|
* @param handle
|
2014-05-15 10:54:27 +00:00
|
|
|
* @param status
|
2014-05-03 22:18:29 +00:00
|
|
|
*/
|
2014-05-15 10:54:27 +00:00
|
|
|
#define GATT_QUERY_COMPLETE 0xA0
|
2013-11-14 15:55:07 +00:00
|
|
|
|
2014-05-11 20:32:56 +00:00
|
|
|
/**
|
2014-05-15 10:54:27 +00:00
|
|
|
* @format HX
|
2014-05-11 20:32:56 +00:00
|
|
|
* @param handle
|
2014-05-15 10:54:27 +00:00
|
|
|
* @param service
|
2014-05-11 20:32:56 +00:00
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_SERVICE_QUERY_RESULT 0xA1
|
2014-05-11 20:32:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format HY
|
|
|
|
* @param handle
|
|
|
|
* @param characteristic
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_CHARACTERISTIC_QUERY_RESULT 0xA2
|
2014-05-11 20:32:56 +00:00
|
|
|
|
2014-05-08 09:46:37 +00:00
|
|
|
/**
|
2015-10-16 11:26:33 +02:00
|
|
|
* @format H2X
|
2014-05-08 09:46:37 +00:00
|
|
|
* @param handle
|
2015-10-16 11:26:33 +02:00
|
|
|
* @param include_handle
|
2014-05-08 09:46:37 +00:00
|
|
|
* @param service
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_INCLUDED_SERVICE_QUERY_RESULT 0xA3
|
2014-05-11 20:32:56 +00:00
|
|
|
|
|
|
|
/**
|
2014-10-06 19:57:12 +00:00
|
|
|
* @format HZ
|
2014-05-11 20:32:56 +00:00
|
|
|
* @param handle
|
|
|
|
* @param characteristic_descriptor
|
|
|
|
*/
|
2014-05-15 10:54:27 +00:00
|
|
|
#define GATT_ALL_CHARACTERISTIC_DESCRIPTORS_QUERY_RESULT 0xA4
|
2014-05-08 09:46:37 +00:00
|
|
|
|
2014-05-11 20:32:56 +00:00
|
|
|
/**
|
|
|
|
* @format H2LV
|
|
|
|
* @param handle
|
|
|
|
* @param value_handle
|
|
|
|
* @param value_length
|
|
|
|
* @param value
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_CHARACTERISTIC_VALUE_QUERY_RESULT 0xA5
|
2014-05-11 20:32:56 +00:00
|
|
|
|
2014-05-16 15:01:57 +00:00
|
|
|
/**
|
|
|
|
* @format H2LV
|
|
|
|
* @param handle
|
|
|
|
* @param value_handle
|
2015-10-15 10:38:23 +02:00
|
|
|
* @param value_offset
|
2014-05-16 15:01:57 +00:00
|
|
|
* @param value_length
|
|
|
|
* @param value
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_LONG_CHARACTERISTIC_VALUE_QUERY_RESULT 0xA6
|
2014-05-11 20:32:56 +00:00
|
|
|
|
2014-05-26 22:36:50 +00:00
|
|
|
/**
|
|
|
|
* @format H2LV
|
|
|
|
* @param handle
|
|
|
|
* @param value_handle
|
|
|
|
* @param value_length
|
|
|
|
* @param value
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_NOTIFICATION 0xA7
|
2014-05-26 22:36:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @format H2LV
|
|
|
|
* @param handle
|
|
|
|
* @param value_handle
|
|
|
|
* @param value_length
|
|
|
|
* @param value
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_INDICATION 0xA8
|
2014-05-08 09:46:37 +00:00
|
|
|
|
2015-10-12 22:06:53 +02:00
|
|
|
/**
|
2015-10-15 10:38:23 +02:00
|
|
|
* @format H2LV
|
|
|
|
* @param descriptor_handle
|
|
|
|
* @param descriptor_length
|
|
|
|
* @param descriptor
|
2015-10-12 22:06:53 +02:00
|
|
|
*/
|
2014-05-15 10:54:27 +00:00
|
|
|
#define GATT_CHARACTERISTIC_DESCRIPTOR_QUERY_RESULT 0xA9
|
2015-10-12 22:06:53 +02:00
|
|
|
|
|
|
|
/**
|
2015-10-15 10:38:23 +02:00
|
|
|
* @format H2LV
|
2015-10-12 22:06:53 +02:00
|
|
|
* @param handle
|
2015-10-15 10:38:23 +02:00
|
|
|
* @param descriptor_offset
|
|
|
|
* @param descriptor_length
|
|
|
|
* @param descriptor
|
2015-10-12 22:06:53 +02:00
|
|
|
*/
|
2014-05-15 10:54:27 +00:00
|
|
|
#define GATT_LONG_CHARACTERISTIC_DESCRIPTOR_QUERY_RESULT 0xAA
|
2015-04-03 21:58:10 +02:00
|
|
|
|
2015-04-03 22:42:05 +02:00
|
|
|
/**
|
|
|
|
* @format H2
|
|
|
|
* @param handle
|
|
|
|
* @param MTU
|
|
|
|
*/
|
|
|
|
#define GATT_MTU 0xAB
|
|
|
|
|
2015-04-03 21:58:10 +02:00
|
|
|
/**
|
|
|
|
* @format H2
|
|
|
|
* @param handle
|
|
|
|
* @param MTU
|
|
|
|
*/
|
|
|
|
#define ATT_MTU_EXCHANGE_COMPLETE 0xB5
|
|
|
|
|
2014-01-12 21:24:25 +00:00
|
|
|
// data: event(8), len(8), status (8), hci_handle (16), attribute_handle (16)
|
2015-04-03 21:58:10 +02:00
|
|
|
#define ATT_HANDLE_VALUE_INDICATION_COMPLETE 0xB6
|
2014-01-12 21:24:25 +00:00
|
|
|
|
2014-10-20 10:06:15 +00:00
|
|
|
|
|
|
|
// data: event(8), len(8), status (8), bnep service uuid (16)
|
|
|
|
#define BNEP_EVENT_SERVICE_REGISTERED 0xC0
|
|
|
|
|
2014-10-20 10:06:32 +00:00
|
|
|
// data: event(8), len(8), status (8), bnep source uuid (16), bnep destination uuid (16), mtu (16), remote_address (48)
|
|
|
|
#define BNEP_EVENT_OPEN_CHANNEL_COMPLETE 0xC1
|
2014-10-20 10:06:15 +00:00
|
|
|
|
|
|
|
// data: event(8), len(8), bnep source uuid (16), bnep destination uuid (16), remote_address (48)
|
2015-08-03 12:59:25 +02:00
|
|
|
#define BNEP_EVENT_CHANNEL_CLOSED 0xC2
|
2014-10-20 10:06:15 +00:00
|
|
|
|
2014-11-13 00:28:01 +00:00
|
|
|
// data: event(8), len(8), bnep source uuid (16), bnep destination uuid (16), remote_address (48), channel state (8)
|
2015-08-03 12:59:25 +02:00
|
|
|
#define BNEP_EVENT_CHANNEL_TIMEOUT 0xC3
|
2014-11-13 00:28:01 +00:00
|
|
|
|
2014-10-28 01:16:45 +00:00
|
|
|
// data: event(8), len(8)
|
2015-08-03 12:59:25 +02:00
|
|
|
#define BNEP_EVENT_READY_TO_SEND 0xC4
|
2014-10-28 01:16:45 +00:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_JUST_WORKS_REQUEST 0xD0
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_JUST_WORKS_CANCEL 0xD1
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B4
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
* @param passkey
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_PASSKEY_DISPLAY_NUMBER 0xD2
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_PASSKEY_DISPLAY_CANCEL 0xD3
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
|
|
|
* @format H1B421
|
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_PASSKEY_INPUT_NUMBER 0xD4
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_PASSKEY_INPUT_CANCEL 0xD5
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_IDENTITY_RESOLVING_STARTED 0xD6
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_IDENTITY_RESOLVING_FAILED 0xD7
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B2
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
* @param le_device_db_index
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_IDENTITY_RESOLVING_SUCCEEDED 0xD8
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_AUTHORIZATION_REQUEST 0xD9
|
2015-10-11 23:33:03 +02:00
|
|
|
|
2015-10-11 21:50:23 +02:00
|
|
|
/**
|
2015-10-11 23:33:03 +02:00
|
|
|
* @format H1B1
|
2015-10-11 21:50:23 +02:00
|
|
|
* @param handle
|
|
|
|
* @param addr_type
|
|
|
|
* @param address
|
|
|
|
* @param authorization_result
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define SM_AUTHORIZATION_RESULT 0xDA
|
2013-11-14 15:55:07 +00:00
|
|
|
|
2014-01-18 20:23:15 +00:00
|
|
|
// GAP
|
2014-01-16 21:36:05 +00:00
|
|
|
|
2014-01-18 20:23:15 +00:00
|
|
|
// data: event(8), len(8), hci_handle (16), security_level (8)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GAP_SECURITY_LEVEL 0xE0
|
2014-01-18 20:23:15 +00:00
|
|
|
|
|
|
|
// data: event(8), len(8), status (8), bd_addr(48)
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GAP_DEDICATED_BONDING_COMPLETED 0xE1
|
2014-05-08 09:46:37 +00:00
|
|
|
|
2014-05-11 20:32:56 +00:00
|
|
|
/**
|
|
|
|
* @format 11B1JV
|
2014-09-07 18:59:02 +00:00
|
|
|
* @param advertising_event_type
|
2014-05-11 20:32:56 +00:00
|
|
|
* @param address_type
|
|
|
|
* @param address
|
|
|
|
* @param rssi
|
|
|
|
* @param data_length
|
|
|
|
* @param data
|
|
|
|
*/
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GAP_LE_ADVERTISING_REPORT 0xE2
|
|
|
|
|
|
|
|
#define HCI_EVENT_HSP_META 0xE8
|
|
|
|
|
2015-02-27 16:17:11 +00:00
|
|
|
#define HSP_SUBEVENT_AUDIO_CONNECTION_COMPLETE 0x01
|
|
|
|
#define HSP_SUBEVENT_AUDIO_DISCONNECTION_COMPLETE 0x02
|
2015-02-27 14:00:32 +00:00
|
|
|
#define HSP_SUBEVENT_MICROPHONE_GAIN_CHANGED 0x03
|
|
|
|
#define HSP_SUBEVENT_SPEAKER_GAIN_CHANGED 0x04
|
2015-02-27 16:17:11 +00:00
|
|
|
#define HSP_SUBEVENT_HS_COMMAND 0x05
|
|
|
|
#define HSP_SUBEVENT_AG_INDICATION 0x06
|
|
|
|
#define HSP_SUBEVENT_ERROR 0x07
|
|
|
|
#define HSP_SUBEVENT_RING 0x08
|
2015-02-27 14:00:32 +00:00
|
|
|
|
2015-07-10 11:02:41 +02:00
|
|
|
#define HCI_EVENT_HFP_META 0xE9
|
|
|
|
|
2015-08-05 17:05:16 +02:00
|
|
|
#define HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED 0x01
|
|
|
|
#define HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED 0x02
|
2015-08-20 16:41:46 +02:00
|
|
|
#define HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED 0x03
|
|
|
|
#define HFP_SUBEVENT_AUDIO_CONNECTION_RELEASED 0x04
|
|
|
|
#define HFP_SUBEVENT_COMPLETE 0x05
|
|
|
|
#define HFP_SUBEVENT_AG_INDICATOR_STATUS_CHANGED 0x06
|
|
|
|
#define HFP_SUBEVENT_NETWORK_OPERATOR_CHANGED 0x07
|
|
|
|
#define HFP_SUBEVENT_EXTENDED_AUDIO_GATEWAY_ERROR 0x08
|
2015-08-26 20:04:59 +02:00
|
|
|
#define HFP_SUBEVENT_CODECS_CONNECTION_COMPLETE 0x09
|
|
|
|
#define HFP_SUBEVENT_AUDIO_CONNECTION_COMPLETE 0x0A
|
2015-08-21 17:29:10 +02:00
|
|
|
|
2014-09-10 21:03:38 +00:00
|
|
|
// ANCS Client
|
2015-02-27 14:00:32 +00:00
|
|
|
#define ANCS_CLIENT_CONNECTED 0xF0
|
|
|
|
#define ANCS_CLIENT_NOTIFICATION 0xF1
|
|
|
|
#define ANCS_CLIENT_DISCONNECTED 0xF2
|
|
|
|
|
|
|
|
// #define HCI_EVENT_HFP_META 0xxx
|
|
|
|
// #define HCI_EVENT_GATT_META 0xxx
|
|
|
|
// #define HCI_EVENT_SDP_META 0xxx
|
|
|
|
// #define HCI_EVENT_ANCS_META 0xxx
|
|
|
|
// #define HCI_EVENT_SM_META 0xxx
|
|
|
|
// #define HCI_EVENT_GAP_META 0xxx
|
|
|
|
// #define HCI_EVENT_BNEP_META 0xxx
|
|
|
|
// #define HCI_EVENT_PAN_META 0xxx
|
|
|
|
|
|
|
|
#define HCI_EVENT_VENDOR_SPECIFIC 0xFF
|
|
|
|
|
2014-05-08 09:46:37 +00:00
|
|
|
//
|
|
|
|
// Error Codes
|
|
|
|
//
|
2014-01-12 21:24:25 +00:00
|
|
|
|
2014-05-08 09:46:37 +00:00
|
|
|
// from Bluetooth Core Specification
|
2015-11-08 21:42:16 +01:00
|
|
|
#define ERROR_CODE_UNKNOWN_HCI_COMMAND 0x01
|
2015-02-27 14:00:32 +00:00
|
|
|
#define ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER 0x02
|
2015-11-08 21:42:16 +01:00
|
|
|
#define ERROR_CODE_HARDWARE_FAILURE 0x03
|
|
|
|
#define ERROR_CODE_PAGE_TIMEOUT 0x04
|
|
|
|
#define ERROR_CODE_AUTHENTICATION_FAILURE 0x05
|
|
|
|
#define ERROR_CODE_PIN_OR_KEY_MISSING 0x06
|
|
|
|
#define ERROR_CODE_MEMORY_CAPACITY_EXCEEDED 0x07
|
|
|
|
#define ERROR_CODE_CONNECTION_TIMEOUT 0x08
|
|
|
|
#define ERROR_CODE_CONNECTION_LIMIT_EXCEEDED 0x09
|
|
|
|
#define ERROR_CODE_SYNCHRONOUS_CONNECTION_LIMIT_TO_A_DEVICE_EXCEEDED 0x0A
|
|
|
|
#define ERROR_CODE_ACL_CONNECTION_ALREADY_EXISTS 0x0B
|
2014-05-15 09:25:33 +00:00
|
|
|
#define ERROR_CODE_COMMAND_DISALLOWED 0x0C
|
2015-11-08 21:42:16 +01:00
|
|
|
#define ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES 0x0D
|
|
|
|
#define ERROR_CODE_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS 0x0E
|
|
|
|
#define ERROR_CODE_CONNECTION_REJECTED_DUE_TO_UNACCEPTABLE_BD_ADDR 0x0F
|
|
|
|
#define ERROR_CODE_CONNECTION_ACCEPT_TIMEOUT_EXCEEDED 0x10
|
|
|
|
#define ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE 0x11
|
|
|
|
#define ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS 0x12
|
|
|
|
#define ERROR_CODE_REMOTE_USER_TERMINATED_CONNECTION 0x13
|
|
|
|
#define ERROR_CODE_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES 0x14
|
|
|
|
#define ERROR_CODE_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_POWER_OFF 0x15
|
|
|
|
#define ERROR_CODE_CONNECTION_TERMINATED_BY_LOCAL_HOST 0x16
|
|
|
|
#define ERROR_CODE_REPEATED_ATTEMPTS 0x17
|
2015-02-27 14:00:32 +00:00
|
|
|
#define ERROR_CODE_PAIRING_NOT_ALLOWED 0x18
|
2015-11-08 21:42:16 +01:00
|
|
|
#define ERROR_CODE_UNKNOWN_LMP_PDU 0x19
|
|
|
|
#define ERROR_CODE_UNSUPPORTED_REMOTE_FEATURE_UNSUPPORTED_LMP_FEATURE 0x1A
|
|
|
|
#define ERROR_CODE_SCO_OFFSET_REJECTED 0x1B
|
|
|
|
#define ERROR_CODE_SCO_INTERVAL_REJECTED 0x1C
|
|
|
|
#define ERROR_CODE_SCO_AIR_MODE_REJECTED 0x1D
|
|
|
|
#define ERROR_CODE_INVALID_LMP_PARAMETERS_INVALID_LL_PARAMETERS 0x1E
|
|
|
|
#define ERROR_CODE_UNSPECIFIED_ERROR 0x1F
|
|
|
|
#define ERROR_CODE_UNSUPPORTED_LMP_PARAMETER_VALUE_UNSUPPORTED_LL_PARAMETER_VALUE 0x20
|
|
|
|
#define ERROR_CODE_ROLE_CHANGE_NOT_ALLOWED 0x21
|
|
|
|
#define ERROR_CODE_LMP_RESPONSE_TIMEOUT_LL_RESPONSE_TIMEOUT 0x22
|
|
|
|
#define ERROR_CODE_LMP_ERROR_TRANSACTION_COLLISION 0x23
|
|
|
|
#define ERROR_CODE_LMP_PDU_NOT_ALLOWED 0x24
|
|
|
|
#define ERROR_CODE_ENCRYPTION_MODE_NOT_ACCEPTABLE 0x25
|
|
|
|
#define ERROR_CODE_LINK_KEY_CANNOT_BE_CHANGED 0x26
|
|
|
|
#define ERROR_CODE_REQUESTED_QOS_NOT_SUPPORTED 0x27
|
|
|
|
#define ERROR_CODE_INSTANT_PASSED 0x28
|
|
|
|
#define ERROR_CODE_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED 0x29
|
|
|
|
#define ERROR_CODE_DIFFERENT_TRANSACTION_COLLISION 0x2A
|
|
|
|
#define ERROR_CODE_RESERVED 0x2B
|
|
|
|
#define ERROR_CODE_QOS_UNACCEPTABLE_PARAMETER 0x2C
|
|
|
|
#define ERROR_CODE_QOS_REJECTED 0x2D
|
|
|
|
#define ERROR_CODE_CHANNEL_CLASSIFICATION_NOT_SUPPORTED 0x2E
|
2015-02-27 14:00:32 +00:00
|
|
|
#define ERROR_CODE_INSUFFICIENT_SECURITY 0x2F
|
2015-11-08 21:42:16 +01:00
|
|
|
#define ERROR_CODE_PARAMETER_OUT_OF_MANDATORY_RANGE 0x30
|
|
|
|
// #define ERROR_CODE_RESERVED
|
|
|
|
#define ERROR_CODE_ROLE_SWITCH_PENDING 0x32
|
|
|
|
// #define ERROR_CODE_RESERVED
|
|
|
|
#define ERROR_CODE_RESERVED_SLOT_VIOLATION 0x34
|
|
|
|
#define ERROR_CODE_ROLE_SWITCH_FAILED 0x35
|
|
|
|
#define ERROR_CODE_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE 0x36
|
|
|
|
#define ERROR_CODE_SECURE_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST 0x37
|
|
|
|
#define ERROR_CODE_HOST_BUSY_PAIRING 0x38
|
|
|
|
#define ERROR_CODE_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND 0x39
|
|
|
|
#define ERROR_CODE_CONTROLLER_BUSY 0x3A
|
|
|
|
#define ERROR_CODE_UNACCEPTABLE_CONNECTION_PARAMETERS 0x3B
|
|
|
|
#define ERROR_CODE_DIRECTED_ADVERTISING_TIMEOUT 0x3C
|
|
|
|
#define ERROR_CODE_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE 0x3D
|
|
|
|
#define ERROR_CODE_CONNECTION_FAILED_TO_BE_ESTABLISHED 0x3E
|
|
|
|
#define ERROR_CODE_MAC_CONNECTION_FAILED 0x3F
|
|
|
|
#define ERROR_CODE_COARSE_CLOCK_ADJUSTMENT_REJECTED_BUT_WILL_TRY_TO_ADJUST_USING_CLOCK_DRAGGING 0x40
|
|
|
|
|
2010-02-21 13:56:01 +00:00
|
|
|
// last error code in 2.1 is 0x38 - we start with 0x50 for BTstack errors
|
|
|
|
#define BTSTACK_CONNECTION_TO_BTDAEMON_FAILED 0x50
|
2015-02-27 14:00:32 +00:00
|
|
|
#define BTSTACK_ACTIVATION_FAILED_SYSTEM_BLUETOOTH 0x51
|
|
|
|
#define BTSTACK_ACTIVATION_POWERON_FAILED 0x52
|
|
|
|
#define BTSTACK_ACTIVATION_FAILED_UNKNOWN 0x53
|
|
|
|
#define BTSTACK_NOT_ACTIVATED 0x54
|
|
|
|
#define BTSTACK_BUSY 0x55
|
2011-03-19 18:27:14 +00:00
|
|
|
#define BTSTACK_MEMORY_ALLOC_FAILED 0x56
|
2011-06-18 10:55:17 +00:00
|
|
|
#define BTSTACK_ACL_BUFFERS_FULL 0x57
|
2010-02-21 13:56:01 +00:00
|
|
|
|
2009-10-21 21:12:51 +00:00
|
|
|
// l2cap errors - enumeration by the command that created them
|
|
|
|
#define L2CAP_COMMAND_REJECT_REASON_COMMAND_NOT_UNDERSTOOD 0x60
|
|
|
|
#define L2CAP_COMMAND_REJECT_REASON_SIGNALING_MTU_EXCEEDED 0x61
|
|
|
|
#define L2CAP_COMMAND_REJECT_REASON_INVALID_CID_IN_REQUEST 0x62
|
|
|
|
|
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL 0x63
|
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_PENDING 0x64
|
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_PSM 0x65
|
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_SECURITY 0x66
|
2014-08-24 20:29:51 +00:00
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_RESOURCES 0x67
|
|
|
|
#define L2CAP_CONNECTION_RESPONSE_RESULT_RTX_TIMEOUT 0x68
|
|
|
|
|
|
|
|
#define L2CAP_SERVICE_ALREADY_REGISTERED 0x69
|
2015-02-27 14:00:32 +00:00
|
|
|
#define L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU 0x6A
|
2011-11-09 16:07:23 +00:00
|
|
|
|
2011-04-30 20:30:05 +00:00
|
|
|
#define RFCOMM_MULTIPLEXER_STOPPED 0x70
|
2011-05-03 21:14:41 +00:00
|
|
|
#define RFCOMM_CHANNEL_ALREADY_REGISTERED 0x71
|
2011-06-18 10:55:17 +00:00
|
|
|
#define RFCOMM_NO_OUTGOING_CREDITS 0x72
|
2015-02-27 14:00:32 +00:00
|
|
|
#define RFCOMM_AGGREGATE_FLOW_OFF 0x73
|
|
|
|
#define RFCOMM_DATA_LEN_EXCEEDS_MTU 0x74
|
2011-05-12 19:12:02 +00:00
|
|
|
|
|
|
|
#define SDP_HANDLE_ALREADY_REGISTERED 0x80
|
2013-04-26 20:17:43 +00:00
|
|
|
#define SDP_QUERY_INCOMPLETE 0x81
|
2015-02-27 16:17:11 +00:00
|
|
|
#define SDP_SERVICE_NOT_FOUND 0x82
|
2011-05-12 19:12:02 +00:00
|
|
|
|
2015-02-27 14:00:32 +00:00
|
|
|
#define ATT_HANDLE_VALUE_INDICATION_IN_PORGRESS 0x90
|
|
|
|
#define ATT_HANDLE_VALUE_INDICATION_TIMEOUT 0x91
|
2014-01-12 21:24:25 +00:00
|
|
|
|
2014-06-19 07:19:45 +00:00
|
|
|
#define GATT_CLIENT_NOT_CONNECTED 0x93
|
2015-02-27 14:00:32 +00:00
|
|
|
#define GATT_CLIENT_BUSY 0x94
|
2014-05-08 09:20:19 +00:00
|
|
|
|
2014-10-20 10:06:15 +00:00
|
|
|
#define BNEP_SERVICE_ALREADY_REGISTERED 0xA0
|
2014-10-28 01:16:45 +00:00
|
|
|
#define BNEP_CHANNEL_NOT_CONNECTED 0xA1
|
|
|
|
#define BNEP_DATA_LEN_EXCEEDS_MTU 0xA2
|
2014-10-20 10:06:15 +00:00
|
|
|
|
2014-05-08 09:12:27 +00:00
|
|
|
typedef enum {
|
2014-05-08 09:20:19 +00:00
|
|
|
BLE_PERIPHERAL_OK = 0xA0,
|
2014-05-08 09:12:27 +00:00
|
|
|
BLE_PERIPHERAL_IN_WRONG_STATE,
|
|
|
|
BLE_PERIPHERAL_DIFFERENT_CONTEXT_FOR_ADDRESS_ALREADY_EXISTS,
|
|
|
|
BLE_PERIPHERAL_NOT_CONNECTED,
|
|
|
|
BLE_VALUE_TOO_LONG,
|
|
|
|
BLE_PERIPHERAL_BUSY,
|
|
|
|
BLE_CHARACTERISTIC_NOTIFICATION_NOT_SUPPORTED,
|
|
|
|
BLE_CHARACTERISTIC_INDICATION_NOT_SUPPORTED
|
|
|
|
} le_command_status_t;
|
|
|
|
|
2009-07-23 21:43:37 +00:00
|
|
|
/**
|
|
|
|
* Default INQ Mode
|
|
|
|
*/
|
|
|
|
#define HCI_INQUIRY_LAP 0x9E8B33L // 0x9E8B33: General/Unlimited Inquiry Access Code (GIAC)
|
2013-09-11 18:25:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SSP IO Capabilities - if capability is set, BTstack answers IO Capability Requests
|
|
|
|
*/
|
|
|
|
#define SSP_IO_CAPABILITY_DISPLAY_ONLY 0
|
|
|
|
#define SSP_IO_CAPABILITY_DISPLAY_YES_NO 1
|
|
|
|
#define SSP_IO_CAPABILITY_KEYBOARD_ONLY 2
|
|
|
|
#define SSP_IO_CAPABILITY_NO_INPUT_NO_OUTPUT 3
|
|
|
|
#define SSP_IO_CAPABILITY_UNKNOWN 0xff
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SSP Authentication Requirements, see IO Capability Request Reply Commmand
|
|
|
|
*/
|
|
|
|
|
2014-01-17 12:01:32 +00:00
|
|
|
// Numeric comparison with automatic accept allowed.
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_NO_BONDING 0x00
|
|
|
|
|
|
|
|
// Use IO Capabilities to deter- mine authentication procedure
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_REQUIRED_NO_BONDING 0x01
|
|
|
|
|
|
|
|
// Numeric compar- ison with automatic accept allowed.
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING 0x02
|
|
|
|
|
|
|
|
// Use IO Capabilities to determine authentication procedure
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_REQUIRED_DEDICATED_BONDING 0x03
|
|
|
|
|
|
|
|
// Numeric Compari- son with automatic accept allowed.
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING 0x04
|
|
|
|
|
|
|
|
// . Use IO capabilities to determine authentication procedure.
|
|
|
|
#define SSP_IO_AUTHREQ_MITM_PROTECTION_REQUIRED_GENERAL_BONDING 0x05
|
|
|
|
|
2014-04-25 10:43:19 +00:00
|
|
|
/**
|
|
|
|
* Address types
|
2015-02-17 23:05:34 +00:00
|
|
|
* @note: BTstack uses a custom addr type to refer to classic ACL and SCO devices
|
2014-04-25 10:43:19 +00:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2015-02-27 14:00:32 +00:00
|
|
|
BD_ADDR_TYPE_LE_PUBLIC = 0,
|
|
|
|
BD_ADDR_TYPE_LE_RANDOM = 1,
|
2015-02-17 23:05:34 +00:00
|
|
|
BD_ADDR_TYPE_SCO = 0xfe,
|
2015-02-27 14:00:32 +00:00
|
|
|
BD_ADDR_TYPE_CLASSIC = 0xff,
|
|
|
|
BD_ADDR_TYPE_UNKNOWN = 0xfe
|
2014-04-25 10:43:19 +00:00
|
|
|
} bd_addr_type_t;
|
|
|
|
|
2009-07-24 21:37:45 +00:00
|
|
|
/**
|
|
|
|
* Hardware state of Bluetooth controller
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
HCI_POWER_OFF = 0,
|
2011-01-06 23:07:41 +00:00
|
|
|
HCI_POWER_ON,
|
2015-02-27 14:00:32 +00:00
|
|
|
HCI_POWER_SLEEP
|
2009-07-24 21:37:45 +00:00
|
|
|
} HCI_POWER_MODE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* State of BTstack
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
HCI_STATE_OFF = 0,
|
|
|
|
HCI_STATE_INITIALIZING,
|
|
|
|
HCI_STATE_WORKING,
|
2011-01-06 23:07:41 +00:00
|
|
|
HCI_STATE_HALTING,
|
2015-02-27 14:00:32 +00:00
|
|
|
HCI_STATE_SLEEPING,
|
|
|
|
HCI_STATE_FALLING_ASLEEP
|
2009-07-24 21:37:45 +00:00
|
|
|
} HCI_STATE;
|
2009-07-23 21:25:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* compact HCI Command packet description
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
uint16_t opcode;
|
|
|
|
const char *format;
|
|
|
|
} hci_cmd_t;
|
|
|
|
|
2009-07-23 21:43:37 +00:00
|
|
|
|
2009-07-23 21:25:39 +00:00
|
|
|
// HCI Commands - see hci_cmds.c for info on parameters
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t btstack_get_state;
|
|
|
|
extern const hci_cmd_t btstack_set_power_mode;
|
|
|
|
extern const hci_cmd_t btstack_set_acl_capture_mode;
|
|
|
|
extern const hci_cmd_t btstack_get_version;
|
|
|
|
extern const hci_cmd_t btstack_get_system_bluetooth_enabled;
|
|
|
|
extern const hci_cmd_t btstack_set_system_bluetooth_enabled;
|
2011-01-10 20:29:29 +00:00
|
|
|
extern const hci_cmd_t btstack_set_discoverable;
|
2011-04-30 20:11:20 +00:00
|
|
|
extern const hci_cmd_t btstack_set_bluetooth_enabled; // only used by btstack config
|
2015-02-27 14:00:32 +00:00
|
|
|
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_accept_connection_request;
|
2015-07-02 10:45:15 +02:00
|
|
|
extern const hci_cmd_t hci_accept_synchronous_connection;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_authentication_requested;
|
2011-03-19 15:34:55 +00:00
|
|
|
extern const hci_cmd_t hci_change_connection_link_key;
|
2013-03-07 17:26:46 +00:00
|
|
|
extern const hci_cmd_t hci_change_connection_packet_type;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_create_connection;
|
|
|
|
extern const hci_cmd_t hci_create_connection_cancel;
|
|
|
|
extern const hci_cmd_t hci_delete_stored_link_key;
|
2015-07-02 10:45:15 +02:00
|
|
|
extern const hci_cmd_t hci_enhanced_setup_synchronous_connection;
|
|
|
|
extern const hci_cmd_t hci_enhanced_accept_synchronous_connection;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_disconnect;
|
|
|
|
extern const hci_cmd_t hci_host_buffer_size;
|
|
|
|
extern const hci_cmd_t hci_inquiry;
|
2013-08-30 12:42:13 +00:00
|
|
|
extern const hci_cmd_t hci_io_capability_request_reply;
|
|
|
|
extern const hci_cmd_t hci_io_capability_request_negative_reply;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_inquiry_cancel;
|
|
|
|
extern const hci_cmd_t hci_link_key_request_negative_reply;
|
|
|
|
extern const hci_cmd_t hci_link_key_request_reply;
|
|
|
|
extern const hci_cmd_t hci_pin_code_request_reply;
|
|
|
|
extern const hci_cmd_t hci_pin_code_request_negative_reply;
|
|
|
|
extern const hci_cmd_t hci_qos_setup;
|
|
|
|
extern const hci_cmd_t hci_read_bd_addr;
|
|
|
|
extern const hci_cmd_t hci_read_buffer_size;
|
2011-09-25 19:38:06 +00:00
|
|
|
extern const hci_cmd_t hci_read_le_host_supported;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_read_link_policy_settings;
|
|
|
|
extern const hci_cmd_t hci_read_link_supervision_timeout;
|
2015-04-16 15:38:30 +02:00
|
|
|
extern const hci_cmd_t hci_read_local_version_information;
|
2015-06-10 22:30:32 +02:00
|
|
|
extern const hci_cmd_t hci_read_local_supported_commands;
|
2011-09-25 18:35:20 +00:00
|
|
|
extern const hci_cmd_t hci_read_local_supported_features;
|
2012-01-15 21:28:42 +00:00
|
|
|
extern const hci_cmd_t hci_read_num_broadcast_retransmissions;
|
2014-01-16 14:47:36 +00:00
|
|
|
extern const hci_cmd_t hci_read_remote_supported_features_command;
|
2014-08-26 17:59:51 +00:00
|
|
|
extern const hci_cmd_t hci_read_rssi;
|
2011-07-25 18:48:34 +00:00
|
|
|
extern const hci_cmd_t hci_reject_connection_request;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_remote_name_request;
|
|
|
|
extern const hci_cmd_t hci_remote_name_request_cancel;
|
2013-08-30 12:42:13 +00:00
|
|
|
extern const hci_cmd_t hci_remote_oob_data_request_negative_reply;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_reset;
|
|
|
|
extern const hci_cmd_t hci_role_discovery;
|
|
|
|
extern const hci_cmd_t hci_set_event_mask;
|
2011-03-19 18:27:14 +00:00
|
|
|
extern const hci_cmd_t hci_set_connection_encryption;
|
2015-07-02 10:45:15 +02:00
|
|
|
extern const hci_cmd_t hci_setup_synchronous_connection;
|
2011-06-20 18:15:49 +00:00
|
|
|
extern const hci_cmd_t hci_sniff_mode;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_switch_role_command;
|
2013-08-30 12:42:13 +00:00
|
|
|
extern const hci_cmd_t hci_user_confirmation_request_negative_reply;
|
|
|
|
extern const hci_cmd_t hci_user_confirmation_request_reply;
|
|
|
|
extern const hci_cmd_t hci_user_passkey_request_negative_reply;
|
|
|
|
extern const hci_cmd_t hci_user_passkey_request_reply;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_write_authentication_enable;
|
|
|
|
extern const hci_cmd_t hci_write_class_of_device;
|
|
|
|
extern const hci_cmd_t hci_write_extended_inquiry_response;
|
|
|
|
extern const hci_cmd_t hci_write_inquiry_mode;
|
2011-09-25 19:38:06 +00:00
|
|
|
extern const hci_cmd_t hci_write_le_host_supported;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_write_link_policy_settings;
|
|
|
|
extern const hci_cmd_t hci_write_link_supervision_timeout;
|
|
|
|
extern const hci_cmd_t hci_write_local_name;
|
2012-01-15 21:28:42 +00:00
|
|
|
extern const hci_cmd_t hci_write_num_broadcast_retransmissions;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t hci_write_page_timeout;
|
|
|
|
extern const hci_cmd_t hci_write_scan_enable;
|
|
|
|
extern const hci_cmd_t hci_write_simple_pairing_mode;
|
2015-02-18 21:46:48 +00:00
|
|
|
extern const hci_cmd_t hci_write_synchronous_flow_control_enable;
|
2010-08-08 18:10:45 +00:00
|
|
|
|
2015-07-28 14:56:48 +02:00
|
|
|
extern const hci_cmd_t hci_le_add_device_to_white_list;
|
2011-09-24 18:27:59 +00:00
|
|
|
extern const hci_cmd_t hci_le_clear_white_list;
|
|
|
|
extern const hci_cmd_t hci_le_connection_update;
|
|
|
|
extern const hci_cmd_t hci_le_create_connection;
|
|
|
|
extern const hci_cmd_t hci_le_create_connection_cancel;
|
|
|
|
extern const hci_cmd_t hci_le_encrypt;
|
|
|
|
extern const hci_cmd_t hci_le_long_term_key_negative_reply;
|
|
|
|
extern const hci_cmd_t hci_le_long_term_key_request_reply;
|
|
|
|
extern const hci_cmd_t hci_le_rand;
|
|
|
|
extern const hci_cmd_t hci_le_read_advertising_channel_tx_power;
|
|
|
|
extern const hci_cmd_t hci_le_read_buffer_size ;
|
|
|
|
extern const hci_cmd_t hci_le_read_channel_map;
|
|
|
|
extern const hci_cmd_t hci_le_read_remote_used_features;
|
|
|
|
extern const hci_cmd_t hci_le_read_supported_features;
|
|
|
|
extern const hci_cmd_t hci_le_read_supported_states;
|
|
|
|
extern const hci_cmd_t hci_le_read_white_list_size;
|
|
|
|
extern const hci_cmd_t hci_le_receiver_test;
|
2015-07-28 14:56:48 +02:00
|
|
|
extern const hci_cmd_t hci_le_remove_device_from_white_list;
|
2011-09-24 18:27:59 +00:00
|
|
|
extern const hci_cmd_t hci_le_set_advertise_enable;
|
|
|
|
extern const hci_cmd_t hci_le_set_advertising_data;
|
|
|
|
extern const hci_cmd_t hci_le_set_advertising_parameters;
|
|
|
|
extern const hci_cmd_t hci_le_set_event_mask;
|
|
|
|
extern const hci_cmd_t hci_le_set_host_channel_classification;
|
|
|
|
extern const hci_cmd_t hci_le_set_random_address;
|
|
|
|
extern const hci_cmd_t hci_le_set_scan_enable;
|
|
|
|
extern const hci_cmd_t hci_le_set_scan_parameters;
|
|
|
|
extern const hci_cmd_t hci_le_set_scan_response_data;
|
|
|
|
extern const hci_cmd_t hci_le_start_encryption;
|
|
|
|
extern const hci_cmd_t hci_le_test_end;
|
|
|
|
extern const hci_cmd_t hci_le_transmitter_test;
|
|
|
|
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t l2cap_accept_connection;
|
|
|
|
extern const hci_cmd_t l2cap_create_channel;
|
2010-08-10 20:43:55 +00:00
|
|
|
extern const hci_cmd_t l2cap_create_channel_mtu;
|
2010-08-08 18:10:45 +00:00
|
|
|
extern const hci_cmd_t l2cap_decline_connection;
|
|
|
|
extern const hci_cmd_t l2cap_disconnect;
|
|
|
|
extern const hci_cmd_t l2cap_register_service;
|
|
|
|
extern const hci_cmd_t l2cap_unregister_service;
|
|
|
|
|
|
|
|
extern const hci_cmd_t sdp_register_service_record;
|
|
|
|
extern const hci_cmd_t sdp_unregister_service_record;
|
2013-04-26 20:32:08 +00:00
|
|
|
extern const hci_cmd_t sdp_client_query_rfcomm_services;
|
2013-10-18 10:19:57 +00:00
|
|
|
extern const hci_cmd_t sdp_client_query_services;
|
2013-04-26 20:17:43 +00:00
|
|
|
|
2010-06-12 19:03:58 +00:00
|
|
|
|
2011-05-03 21:14:41 +00:00
|
|
|
// accept connection @param bd_addr(48), rfcomm_cid (16)
|
2010-08-23 20:59:46 +00:00
|
|
|
extern const hci_cmd_t rfcomm_accept_connection;
|
2011-05-03 21:14:41 +00:00
|
|
|
// create rfcomm channel: @param bd_addr(48), channel (8)
|
2010-08-23 20:59:46 +00:00
|
|
|
extern const hci_cmd_t rfcomm_create_channel;
|
2011-09-11 21:00:34 +00:00
|
|
|
// create rfcomm channel: @param bd_addr(48), channel (8), mtu (16), credits (8)
|
|
|
|
extern const hci_cmd_t rfcomm_create_channel_with_initial_credits;
|
2011-05-03 21:14:41 +00:00
|
|
|
// decline rfcomm disconnect,@param bd_addr(48), rfcomm cid (16), reason(8)
|
2010-08-23 20:59:46 +00:00
|
|
|
extern const hci_cmd_t rfcomm_decline_connection;
|
2011-05-03 21:14:41 +00:00
|
|
|
// disconnect rfcomm disconnect, @param rfcomm_cid(8), reason(8)
|
2010-08-23 20:59:46 +00:00
|
|
|
extern const hci_cmd_t rfcomm_disconnect;
|
2011-05-03 21:14:41 +00:00
|
|
|
// register rfcomm service: @param channel(8), mtu (16)
|
2010-08-23 20:59:46 +00:00
|
|
|
extern const hci_cmd_t rfcomm_register_service;
|
2011-09-11 21:00:34 +00:00
|
|
|
// register rfcomm service: @param channel(8), mtu (16), initial credits (8)
|
|
|
|
extern const hci_cmd_t rfcomm_register_service_with_initial_credits;
|
2011-05-03 21:14:41 +00:00
|
|
|
// unregister rfcomm service, @param service_channel(16)
|
2011-01-10 20:29:29 +00:00
|
|
|
extern const hci_cmd_t rfcomm_unregister_service;
|
2011-05-03 21:14:41 +00:00
|
|
|
// request persisten rfcomm channel for service name: serive name (char*)
|
|
|
|
extern const hci_cmd_t rfcomm_persistent_channel_for_service;
|
2015-07-02 10:45:15 +02:00
|
|
|
extern const hci_cmd_t rfcomm_grants_credits;
|
|
|
|
|
2014-05-03 22:18:29 +00:00
|
|
|
extern const hci_cmd_t gap_disconnect_cmd;
|
|
|
|
extern const hci_cmd_t gap_le_scan_start;
|
|
|
|
extern const hci_cmd_t gap_le_scan_stop;
|
2014-06-07 08:06:25 +00:00
|
|
|
extern const hci_cmd_t gap_le_set_scan_parameters;
|
2014-05-03 22:18:29 +00:00
|
|
|
extern const hci_cmd_t gap_le_connect_cmd;
|
2014-05-12 21:38:30 +00:00
|
|
|
extern const hci_cmd_t gap_le_connect_cancel_cmd;
|
2014-05-03 22:18:29 +00:00
|
|
|
extern const hci_cmd_t gatt_discover_primary_services_cmd;
|
|
|
|
|
2015-07-02 10:45:15 +02:00
|
|
|
extern const hci_cmd_t gatt_discover_primary_services_by_uuid16_cmd;
|
|
|
|
extern const hci_cmd_t gatt_discover_primary_services_by_uuid128_cmd;
|
|
|
|
extern const hci_cmd_t gatt_find_included_services_for_service_cmd;
|
|
|
|
extern const hci_cmd_t gatt_discover_characteristics_for_service_cmd;
|
|
|
|
extern const hci_cmd_t gatt_discover_characteristics_for_service_by_uuid128_cmd;
|
|
|
|
extern const hci_cmd_t gatt_discover_characteristic_descriptors_cmd;
|
|
|
|
extern const hci_cmd_t gatt_read_value_of_characteristic_cmd;
|
|
|
|
extern const hci_cmd_t gatt_read_long_value_of_characteristic_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_value_of_characteristic_without_response_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_value_of_characteristic_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_long_value_of_characteristic_cmd;
|
|
|
|
extern const hci_cmd_t gatt_reliable_write_long_value_of_characteristic_cmd;
|
|
|
|
extern const hci_cmd_t gatt_read_characteristic_descriptor_cmd;
|
|
|
|
extern const hci_cmd_t gatt_read_long_characteristic_descriptor_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_characteristic_descriptor_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_long_characteristic_descriptor_cmd;
|
|
|
|
extern const hci_cmd_t gatt_write_client_characteristic_configuration_cmd;
|
|
|
|
extern const hci_cmd_t gatt_get_mtu;
|
|
|
|
|
|
|
|
|
2010-08-08 18:17:48 +00:00
|
|
|
#if defined __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-01-19 16:30:17 +00:00
|
|
|
|
|
|
|
#endif // __HCI_CMDS_H
|