1d40c9ac6SMatthias Ringwald /* 2d40c9ac6SMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 3d40c9ac6SMatthias Ringwald * 4d40c9ac6SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 5d40c9ac6SMatthias Ringwald * modification, are permitted provided that the following conditions 6d40c9ac6SMatthias Ringwald * are met: 7d40c9ac6SMatthias Ringwald * 8d40c9ac6SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 9d40c9ac6SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 10d40c9ac6SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 11d40c9ac6SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 12d40c9ac6SMatthias Ringwald * documentation and/or other materials provided with the distribution. 13d40c9ac6SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 14d40c9ac6SMatthias Ringwald * contributors may be used to endorse or promote products derived 15d40c9ac6SMatthias Ringwald * from this software without specific prior written permission. 16d40c9ac6SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 17d40c9ac6SMatthias Ringwald * personal benefit and not for any commercial purpose or for 18d40c9ac6SMatthias Ringwald * monetary gain. 19d40c9ac6SMatthias Ringwald * 20d40c9ac6SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 21d40c9ac6SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22d40c9ac6SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23d40c9ac6SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 24d40c9ac6SMatthias Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 25d40c9ac6SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 26d40c9ac6SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 27d40c9ac6SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 28d40c9ac6SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 29d40c9ac6SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 30d40c9ac6SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31d40c9ac6SMatthias Ringwald * SUCH DAMAGE. 32d40c9ac6SMatthias Ringwald * 33d40c9ac6SMatthias Ringwald * Please inquire about commercial licensing options at 34d40c9ac6SMatthias Ringwald * [email protected] 35d40c9ac6SMatthias Ringwald * 36d40c9ac6SMatthias Ringwald */ 37d40c9ac6SMatthias Ringwald 38fcaf12e7SMilanka Ringwald #ifndef __HID_DEVICE_H 39fcaf12e7SMilanka Ringwald #define __HID_DEVICE_H 40fe9125ceSMilanka Ringwald 41d40c9ac6SMatthias Ringwald #include <stdint.h> 428eb8d463SMatthias Ringwald #include "btstack_defines.h" 4357c643eeSMatthias Ringwald #include "bluetooth.h" 4457c643eeSMatthias Ringwald 45fe9125ceSMilanka Ringwald #if defined __cplusplus 46fe9125ceSMilanka Ringwald extern "C" { 47fe9125ceSMilanka Ringwald #endif 48fe9125ceSMilanka Ringwald 49fcaf12e7SMilanka Ringwald /* API_START */ 50fcaf12e7SMilanka Ringwald 517d26fe66SMilanka Ringwald #define HID_BOOT_MODE_KEYBOARD_ID 1 527d26fe66SMilanka Ringwald #define HID_BOOT_MODE_MOUSE_ID 2 537d26fe66SMilanka Ringwald 54fcaf12e7SMilanka Ringwald typedef enum { 55fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_HANDSHAKE = 0, 56fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_HID_CONTROL, 57fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_RESERVED_2, 58fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_RESERVED_3, 59fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_GET_REPORT, 60fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_SET_REPORT, 61fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_GET_PROTOCOL, 62fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_SET_PROTOCOL, 63fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_GET_IDLE_DEPRECATED, 64fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_SET_IDLE_DEPRECATED, 65fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_DATA, 66fcaf12e7SMilanka Ringwald HID_MESSAGE_TYPE_DATC_DEPRECATED 67fcaf12e7SMilanka Ringwald } hid_message_type_t; 68fcaf12e7SMilanka Ringwald 69fcaf12e7SMilanka Ringwald typedef enum { 70fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_SUCCESSFUL = 0x00, // This code is used to acknowledge requests. A device that has correctly received SET_REPORT, SET_IDLE or SET_PROTOCOL payload transmits an acknowledgment to the host. 71fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_NOT_READY, // This code indicates that a device is too busy to accept data. The Bluetooth HID Host should retransmit the data the next time it communicates with the device. 72fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_ERR_INVALID_REPORT_ID, // Invalid report ID transmitted. 73fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_ERR_UNSUPPORTED_REQUEST, // The device does not support the request. This result code shall be used if the HIDP message type is unsupported. 74fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_ERR_INVALID_PARAMETER, // A parameter value is out of range or inappropriate for the request. 75fcaf12e7SMilanka Ringwald HID_HANDSHAKE_PARAM_TYPE_ERR_UNKNOWN = 0x0E // Device could not identify the error condition. 0xF = ERR_FATAL. Restart is essential to resume functionality. 76fcaf12e7SMilanka Ringwald } hid_handshake_param_type_t; 77fcaf12e7SMilanka Ringwald 78fcaf12e7SMilanka Ringwald typedef enum { 796510739bSMilanka Ringwald HID_CONTROL_PARAM_NOP_DEPRECATED = 0, // Deprecated: No Operation. 806510739bSMilanka Ringwald HID_CONTROL_PARAM_HARD_RESET_DEPRECATED, // Deprecated: Device performs Power On System Test (POST) then initializes all internal variables and initiates normal operations. 816510739bSMilanka Ringwald HID_CONTROL_PARAM_SOFT_RESET_DEPRECATED, // Deprecated: Device initializes all internal variables and initiates normal operations. 826510739bSMilanka Ringwald HID_CONTROL_PARAM_SUSPEND = 0x03, // Go to reduced power mode. 836510739bSMilanka Ringwald HID_CONTROL_PARAM_EXIT_SUSPEND, // Exit reduced power mode. 846510739bSMilanka Ringwald HID_CONTROL_PARAM_VIRTUAL_CABLE_UNPLUG 85fcaf12e7SMilanka Ringwald } hid_control_param_t; 86fcaf12e7SMilanka Ringwald 87fcaf12e7SMilanka Ringwald typedef enum { 88fcaf12e7SMilanka Ringwald HID_REPORT_TYPE_RESERVED = 0, 89fcaf12e7SMilanka Ringwald HID_REPORT_TYPE_INPUT, 90fcaf12e7SMilanka Ringwald HID_REPORT_TYPE_OUTPUT, 91fcaf12e7SMilanka Ringwald HID_REPORT_TYPE_FEATURE 92fcaf12e7SMilanka Ringwald } hid_report_type_t; 93fcaf12e7SMilanka Ringwald 94ba9a58feSMilanka Ringwald typedef enum { 95ba9a58feSMilanka Ringwald HID_PROTOCOL_MODE_BOOT = 0, 96ba9a58feSMilanka Ringwald HID_PROTOCOL_MODE_REPORT 97ba9a58feSMilanka Ringwald } hid_protocol_mode_t; 98ba9a58feSMilanka Ringwald 99*a78157ddSMilanka Ringwald typedef enum { 100*a78157ddSMilanka Ringwald HID_REPORT_ID_UNDECLARED, 101*a78157ddSMilanka Ringwald HID_REPORT_ID_VALID, 102*a78157ddSMilanka Ringwald HID_REPORT_ID_INVALID 103*a78157ddSMilanka Ringwald } hid_report_id_status_t; 104fcaf12e7SMilanka Ringwald 105d40c9ac6SMatthias Ringwald /** 106d40c9ac6SMatthias Ringwald * @brief Create HID Device SDP service record. 107d40c9ac6SMatthias Ringwald * @param service Empty buffer in which a new service record will be stored. 108d40c9ac6SMatthias Ringwald * @param have_remote_audio_control 109d40c9ac6SMatthias Ringwald * @param service 110d40c9ac6SMatthias Ringwald * @param service_record_handle 111d40c9ac6SMatthias Ringwald * @param hid_device_subclass 112d40c9ac6SMatthias Ringwald * @param hid_country_code 113d40c9ac6SMatthias Ringwald * @param hid_virtual_cable 114d40c9ac6SMatthias Ringwald * @param hid_reconnect_initiate 115d40c9ac6SMatthias Ringwald * @param hid_boot_device 116d40c9ac6SMatthias Ringwald * @param hid_descriptor 117d40c9ac6SMatthias Ringwald * @param hid_descriptor_size size of hid_descriptor 118d40c9ac6SMatthias Ringwald * @param device_name 119d40c9ac6SMatthias Ringwald */ 120d40c9ac6SMatthias Ringwald void hid_create_sdp_record( 121d40c9ac6SMatthias Ringwald uint8_t * service, 122d40c9ac6SMatthias Ringwald uint32_t service_record_handle, 123d40c9ac6SMatthias Ringwald uint16_t hid_device_subclass, 124d40c9ac6SMatthias Ringwald uint8_t hid_country_code, 125d40c9ac6SMatthias Ringwald uint8_t hid_virtual_cable, 126d40c9ac6SMatthias Ringwald uint8_t hid_reconnect_initiate, 127d40c9ac6SMatthias Ringwald uint8_t hid_boot_device, 128d40c9ac6SMatthias Ringwald const uint8_t * hid_descriptor, 129d40c9ac6SMatthias Ringwald uint16_t hid_descriptor_size, 130d40c9ac6SMatthias Ringwald const char * device_name); 131d40c9ac6SMatthias Ringwald 132fe9125ceSMilanka Ringwald 1338eb8d463SMatthias Ringwald /** 1348eb8d463SMatthias Ringwald * @brief Set up HID Device 135ba9a58feSMilanka Ringwald * @param boot_protocol_mode_supported 1368eb8d463SMatthias Ringwald */ 1377d26fe66SMilanka Ringwald void hid_device_init(uint8_t boot_protocol_mode_supported, uint8_t report_ids_declared); 1388eb8d463SMatthias Ringwald 1398eb8d463SMatthias Ringwald /** 1408eb8d463SMatthias Ringwald * @brief Register callback for the HID Device client. 1418eb8d463SMatthias Ringwald * @param callback 1428eb8d463SMatthias Ringwald */ 1438eb8d463SMatthias Ringwald void hid_device_register_packet_handler(btstack_packet_handler_t callback); 1448eb8d463SMatthias Ringwald 145fcaf12e7SMilanka Ringwald /** 146ba9a58feSMilanka Ringwald * @brief Register get report callback for the HID Device client. 147fcaf12e7SMilanka Ringwald * @param callback 148fcaf12e7SMilanka Ringwald */ 149481c7cdcSMilanka Ringwald void hid_device_register_report_request_callback(hid_handshake_param_type_t (*callback) (uint16_t hid_cid, hid_report_type_t report_type, uint16_t report_id, uint8_t report_max_size, int * out_report_size, uint8_t * out_report)); 15057c643eeSMatthias Ringwald 151ba9a58feSMilanka Ringwald /** 152ba9a58feSMilanka Ringwald * @brief Register set report callback for the HID Device client. 153ba9a58feSMilanka Ringwald * @param callback 154ba9a58feSMilanka Ringwald */ 155ba9a58feSMilanka Ringwald void hid_device_register_set_report_callback(hid_handshake_param_type_t (*callback) (uint16_t hid_cid, hid_report_type_t report_type, int report_size, uint8_t * report)); 156ba9a58feSMilanka Ringwald 1577d26fe66SMilanka Ringwald /** 1587d26fe66SMilanka Ringwald * @brief Register callback to receive report data for the HID Device client. 1597d26fe66SMilanka Ringwald * @param callback 1607d26fe66SMilanka Ringwald */ 1617d26fe66SMilanka Ringwald void hid_device_register_report_data_callback(void hid_report_data_callback(uint16_t cid, hid_report_type_t report_type, uint16_t report_id, int report_size, uint8_t * report)); 162ba9a58feSMilanka Ringwald 16357c643eeSMatthias Ringwald /* 16457c643eeSMatthias Ringwald * @brief Create HID connection to HID Host 16557c643eeSMatthias Ringwald * @param addr 16657c643eeSMatthias Ringwald * @param hid_cid to use for other commands 16757c643eeSMatthias Ringwald * @result status 16857c643eeSMatthias Ringwald */ 16957c643eeSMatthias Ringwald uint8_t hid_device_connect(bd_addr_t addr, uint16_t * hid_cid); 17057c643eeSMatthias Ringwald 1716510739bSMilanka Ringwald /* 1726510739bSMilanka Ringwald * @brief Disconnect from HID Host 1736510739bSMilanka Ringwald * @param hid_cid 1746510739bSMilanka Ringwald */ 1756510739bSMilanka Ringwald void hid_device_disconnect(uint16_t hid_cid); 1766510739bSMilanka Ringwald 1778eb8d463SMatthias Ringwald /** 1788eb8d463SMatthias Ringwald * @brief Request can send now event to send HID Report 1798eb8d463SMatthias Ringwald * Generates an HID_SUBEVENT_CAN_SEND_NOW subevent 1808eb8d463SMatthias Ringwald * @param hid_cid 1818eb8d463SMatthias Ringwald */ 1828eb8d463SMatthias Ringwald void hid_device_request_can_send_now_event(uint16_t hid_cid); 1838eb8d463SMatthias Ringwald 1848eb8d463SMatthias Ringwald /** 1858eb8d463SMatthias Ringwald * @brief Send HID messageon interrupt channel 1868eb8d463SMatthias Ringwald * @param hid_cid 1878eb8d463SMatthias Ringwald */ 1888eb8d463SMatthias Ringwald void hid_device_send_interrupt_message(uint16_t hid_cid, const uint8_t * message, uint16_t message_len); 1898eb8d463SMatthias Ringwald 1908eb8d463SMatthias Ringwald /** 1918eb8d463SMatthias Ringwald * @brief Send HID messageon control channel 1928eb8d463SMatthias Ringwald * @param hid_cid 1938eb8d463SMatthias Ringwald */ 194fcaf12e7SMilanka Ringwald void hid_device_send_control_message(uint16_t hid_cid, const uint8_t * message, uint16_t message_len); 195fcaf12e7SMilanka Ringwald 1967d26fe66SMilanka Ringwald /** 1977d26fe66SMilanka Ringwald * @brief Retutn 1 if boot protocol mode active 1987d26fe66SMilanka Ringwald * @param hid_cid 1997d26fe66SMilanka Ringwald */ 2007d26fe66SMilanka Ringwald int hid_device_in_boot_protocol_mode(uint16_t hid_cid); 2018eb8d463SMatthias Ringwald 202fe9125ceSMilanka Ringwald /* API_END */ 2038eb8d463SMatthias Ringwald 20457c18996SMilanka Ringwald /* Only needed for PTS Testing */ 20557c18996SMilanka Ringwald void hid_device_disconnect_interrupt_channel(uint16_t hid_cid); 20657c18996SMilanka Ringwald void hid_device_disconnect_control_channel(uint16_t hid_cid); 20757c18996SMilanka Ringwald 208fe9125ceSMilanka Ringwald #if defined __cplusplus 209fe9125ceSMilanka Ringwald } 210fe9125ceSMilanka Ringwald #endif 211fe9125ceSMilanka Ringwald 212fe9125ceSMilanka Ringwald #endif 213