mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2025-01-23 12:54:10 +08:00
android/hal-ipc-api: Add Get Player Values Text notification
This commit is contained in:
parent
d69e42b45d
commit
a788d22d81
@ -1340,6 +1340,15 @@ Android HAL name: "avrcp" (BT_PROFILE_AV_RC_ID)
|
||||
|
||||
Valid attribute values: Same as in List Player Attributes
|
||||
|
||||
Opcode 0x87 - Get Player Values Text notification
|
||||
|
||||
Notification parameters: Attribute (1 octet)
|
||||
Number of values (1 octet)
|
||||
Value # (1 octet)
|
||||
...
|
||||
|
||||
Valid attribute values: Same as in List Player Attributes
|
||||
|
||||
Bluetooth GATT HAL (ID 9)
|
||||
=========================
|
||||
|
||||
|
@ -907,3 +907,10 @@ struct hal_ev_avrcp_get_player_attrs_text {
|
||||
uint8_t number;
|
||||
uint8_t attrs[0];
|
||||
} __attribute__((packed));
|
||||
|
||||
#define HAL_EV_AVRCP_GET_PLAYER_VALUES_TEXT 0x87
|
||||
struct hal_ev_avrcp_get_player_values_text {
|
||||
uint8_t attr;
|
||||
uint8_t number;
|
||||
uint8_t values[0];
|
||||
} __attribute__((packed));
|
||||
|
Loading…
Reference in New Issue
Block a user