1 /* btp_vcs.h - Bluetooth tester headers */
2 
3 /*
4  * Copyright (c) 2022 Codecoup
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #include <zephyr/sys/util.h>
10 
11 #define BTP_VCS_READ_SUPPORTED_COMMANDS		0x01
12 struct btp_vcs_read_supported_commands_rp {
13 	uint8_t data[0];
14 } __packed;
15 
16 #define BTP_VCS_SET_VOL				0x02
17 struct btp_vcs_set_vol_cmd {
18 	uint8_t volume;
19 } __packed;
20 
21 #define BTP_VCS_VOL_UP				0x03
22 #define BTP_VCS_VOL_DOWN			0x04
23 #define BTP_VCS_MUTE				0x05
24 #define BTP_VCS_UNMUTE				0x06
25