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_L2CAP_MULTILINK_PERIPHERAL_SRC_DATA_H_ 8 #define ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_L2CAP_MULTILINK_PERIPHERAL_SRC_DATA_H_ 9 10 #define SDU_NUM 200 /* Number of SDU (L2CAP buffers) to send */ 11 #define SDU_LEN 20 /* Length in bytes of said SDUs */ 12 #define DUT_NAME CONFIG_BT_DEVICE_NAME /* name to advertise with */ 13 14 #endif /* ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_L2CAP_MULTILINK_PERIPHERAL_SRC_DATA_H_ */ 15