1 /* btp_mics.h - Bluetooth tester headers */
2 
3 /*
4  * Copyright (c) 2023 Codecoup
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 /* MICS commands */
10 #define BTP_MICS_READ_SUPPORTED_COMMANDS	0x01
11 struct btp_mics_read_supported_commands_rp {
12 	uint8_t data[0];
13 } __packed;
14 
15 #define BTP_MICS_DEV_MUTE_DISABLE		0x02
16 #define BTP_MICS_DEV_MUTE_READ			0x03
17 #define BTP_MICS_DEV_MUTE			0x04
18 #define BTP_MICS_DEV_UNMUTE			0x05
19 
20 #define BTP_MICS_MUTE_STATE_EV			0x80
21 struct btp_mics_mute_state_ev {
22 	uint8_t mute;
23 } __packed;
24