1 /* 2 * Copyright (c) 2022 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 #include <zephyr/bluetooth/hci.h> 9 #include <host/hci_core.h> 10 #include "mocks/hci_core.h" 11 12 struct bt_dev bt_dev = { 13 .manufacturer = 0x1234, 14 }; 15 16 DEFINE_FAKE_VALUE_FUNC(int, bt_hci_le_rand, void *, size_t); 17