/* * Copyright (C) 2016 BlueKitchen GmbH * * 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. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``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. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ /* * avrcp.h * * Audio/Video Remote Control Profile * */ #ifndef __AVRCP_H #define __AVRCP_H #include #if defined __cplusplus extern "C" { #endif #define BT_SIG_COMPANY_ID 0x001958 /* API_START */ typedef enum { AVRCP_CTYPE_CONTROL = 0, AVRCP_CTYPE_STATUS, AVRCP_CTYPE_SPECIFIC_INQUIRY, AVRCP_CTYPE_NOTIFY, AVRCP_CTYPE_GENERAL_INQUIRY, AVRCP_CTYPE_RESERVED5, AVRCP_CTYPE_RESERVED6, AVRCP_CTYPE_RESERVED7, AVRCP_CTYPE_RESPONSE_NOT_IMPLEMENTED = 8, AVRCP_CTYPE_RESPONSE_ACCEPTED, AVRCP_CTYPE_RESPONSE_REJECTED, AVRCP_CTYPE_RESPONSE_IN_TRANSITION, AVRCP_CTYPE_RESPONSE_IMPLEMENTED_STABLE, AVRCP_CTYPE_RESPONSE_CHANGED_STABLE, AVRCP_CTYPE_RESPONSE_RESERVED, AVRCP_CTYPE_RESPONSE_INTERIM } avrcp_command_type_t; typedef enum { AVRCP_SUBUNIT_TYPE_MONITOR = 0, AVRCP_SUBUNIT_TYPE_AUDIO = 1, AVRCP_SUBUNIT_TYPE_PRINTER, AVRCP_SUBUNIT_TYPE_DISC, AVRCP_SUBUNIT_TYPE_TAPE_RECORDER_PLAYER, AVRCP_SUBUNIT_TYPE_TUNER, AVRCP_SUBUNIT_TYPE_CA, AVRCP_SUBUNIT_TYPE_CAMERA, AVRCP_SUBUNIT_TYPE_RESERVED, AVRCP_SUBUNIT_TYPE_PANEL = 9, AVRCP_SUBUNIT_TYPE_BULLETIN_BOARD, AVRCP_SUBUNIT_TYPE_CAMERA_STORAGE, AVRCP_SUBUNIT_TYPE_VENDOR_UNIQUE = 0x1C, AVRCP_SUBUNIT_TYPE_RESERVED_FOR_ALL_SUBUNIT_TYPES, AVRCP_SUBUNIT_TYPE_EXTENDED_TO_NEXT_BYTE, AVRCP_SUBUNIT_TYPE_UNIT = 0x1F } avrcp_subunit_type_t; typedef enum { AVRCP_SUBUNIT_ID = 0, AVRCP_SUBUNIT_ID_IGNORE = 7 } avrcp_subunit_id_t; typedef enum{ AVRCP_CMD_OPCODE_VENDOR_DEPENDENT = 0x00, AVRCP_CMD_OPCODE_RESERVE = 0x01, AVRCP_CMD_OPCODE_UNIT_INFO = 0x30, AVRCP_CMD_OPCODE_SUBUNIT_INFO = 0x31, AVRCP_CMD_OPCODE_VERSION = 0xB0, AVRCP_CMD_OPCODE_POWER = 0xB2 } avrcp_command_opcode_t; typedef enum { AVCTP_CONNECTION_IDLE, AVCTP_CONNECTION_W4_L2CAP_CONNECTED, AVCTP_CONNECTION_OPENED, AVCTP_W2_SEND_COMMAND, AVCTP_W2_RECEIVE_RESPONSE, AVCTP_CONNECTION_W4_L2CAP_DISCONNECTED } avctp_connection_state_t; typedef struct { btstack_linked_item_t item; bd_addr_t remote_addr; hci_con_handle_t con_handle; uint16_t l2cap_signaling_cid; avctp_connection_state_t state; uint8_t wait_to_send; // command uint8_t transaction_label; avrcp_command_opcode_t cmd_to_send; avrcp_command_type_t command_type; avrcp_subunit_type_t subunit_type; avrcp_subunit_id_t subunit_id; uint8_t cmd_operands[20]; uint8_t cmd_operands_lenght; } avrcp_connection_t; /** * @brief AVDTP Sink service record. * @param service * @param service_record_handle * @param browsing 1 - supported, 0 - not supported * @param supported_features 16-bit bitmap, see AVDTP_SINK_SF_* values in avdtp.h * @param service_name * @param service_provider_name */ void avrcp_controller_create_sdp_record(uint8_t * service, uint32_t service_record_handle, uint8_t browsing, uint16_t supported_features, const char * service_name, const char * service_provider_name); /** * @brief AVDTP Sink service record. * @param service * @param service_record_handle * @param browsing 1 - supported, 0 - not supported * @param supported_features 16-bit bitmap, see AVDTP_SINK_SF_* values in avdtp.h * @param service_name * @param service_provider_name */ void avrcp_target_create_sdp_record(uint8_t * service, uint32_t service_record_handle, uint8_t browsing, uint16_t supported_features, const char * service_name, const char * service_provider_name); /** * @brief Set up AVDTP Sink device. */ void avrcp_init(void); /** * @brief Register callback for the AVDTP Sink client. * @param callback */ void avrcp_register_packet_handler(btstack_packet_handler_t callback); /** * @brief Connect to device with a bluetooth address. * @param bd_addr */ void avrcp_connect(bd_addr_t bd_addr); /** * @brief Unit info. * @param con_handle */ void avrcp_unit_info(uint16_t con_handle); /** * @brief Unit info. * @param con_handle */ void avrcp_get_capabilities(uint16_t con_handle); /* API_END */ #if defined __cplusplus } #endif #endif // __AVRCP_H