1 /* btp_ias.h - Bluetooth tester headers */
2 
3 /*
4  * Copyright (c) 2022 Codecoup
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #include <zephyr/bluetooth/services/ias.h>
10 #include <stdint.h>
11 
12 /* events */
13 #define BTP_IAS_EV_OUT_ALERT_ACTION 0x80
14 struct btp_ias_alert_action_ev {
15 	uint8_t alert_lvl;
16 } __packed;
17