1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef MOCKS_BLUETOOTH_H_ 8 #define MOCKS_BLUETOOTH_H_ 9 10 struct bt_le_ext_adv { 11 /* ID Address used for advertising */ 12 uint8_t id; 13 14 /* Advertising handle */ 15 uint8_t handle; 16 }; 17 18 #endif /* MOCKS_BLUETOOTH_H_ */ 19