mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-26 21:54:33 +08:00
android/hal-ipc-api: Add Get Element Attributes notification
This commit is contained in:
parent
83541b26ed
commit
eebb90c754
@ -1358,6 +1358,14 @@ Android HAL name: "avrcp" (BT_PROFILE_AV_RC_ID)
|
||||
|
||||
Valid attribute values: Same as in List Player Attributes
|
||||
|
||||
Opcode 0x89 - Get Element Attributes notification
|
||||
|
||||
Notification parameters: Number of attributes (1 octet)
|
||||
Attribute # (1 octet)
|
||||
...
|
||||
|
||||
Valid attribute values: Same as in Get Element Attribute
|
||||
|
||||
Bluetooth GATT HAL (ID 9)
|
||||
=========================
|
||||
|
||||
|
@ -920,3 +920,9 @@ struct hal_ev_avrcp_set_player_values {
|
||||
uint8_t number;
|
||||
struct hal_avrcp_player_attr_value attrs[0];
|
||||
} __attribute__((packed));
|
||||
|
||||
#define HAL_EV_AVRCP_GET_ELEMENT_ATTRS 0x89
|
||||
struct hal_ev_avrcp_get_element_attrs {
|
||||
uint8_t number;
|
||||
uint8_t attrs[0];
|
||||
} __attribute__((packed));
|
||||
|
Loading…
Reference in New Issue
Block a user