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 #include <stdint.h> 10 11 struct bt_le_ext_adv { 12 /* ID Address used for advertising */ 13 uint8_t id; 14 15 /* Advertising handle */ 16 uint8_t handle; 17 }; 18 19 #endif /* MOCKS_BLUETOOTH_H_ */ 20