1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_MISC_HFC_MULTILINK_SRC_DATA_H_ 8 #define ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_MISC_HFC_MULTILINK_SRC_DATA_H_ 9 10 #define TESTER_NAME "tester" 11 #define SDU_NUM 3 12 #define L2CAP_TEST_PSM 0x0080 13 /* use the first dynamic channel ID */ 14 #define L2CAP_TEST_CID 0x0040 15 #define PAYLOAD_LEN 50 16 17 #define EXPECTED_CONN_INTERVAL 50 18 #define CONN_INTERVAL_TOL 20 19 20 #endif /* ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_MISC_HFC_MULTILINK_SRC_DATA_H_ */ 21