android/hal-ipc-api: Add List Player Values notification

This commit is contained in:
Luiz Augusto von Dentz 2014-02-13 17:18:40 +02:00 committed by Szymon Janc
parent e23e02ed6a
commit c6a6cb31c7
2 changed files with 11 additions and 0 deletions

View File

@ -1318,6 +1318,12 @@ Android HAL name: "avrcp" (BT_PROFILE_AV_RC_ID)
Notification parameters: <none>
Opcode 0x84 - List Player Values notification
Notification parameters: Attribute (1 octet)
Valid attribute values: Same as in List Player Attributes
Bluetooth GATT HAL (ID 9)
=========================

View File

@ -890,3 +890,8 @@ struct hal_ev_avrcp_remote_features {
#define HAL_EV_AVRCP_GET_PLAY_STATUS 0x82
#define HAL_EV_AVRCP_LIST_PLAYER_ATTRS 0x83
#define HAL_EV_AVRCP_LIST_PLAYER_VALUES 0x84
struct hal_ev_avrcp_list_player_values {
uint8_t attr;
} __attribute__((packed));