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_SAMPLE_TEST_SRC_DATA_H_ 8 #define ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_MISC_SAMPLE_TEST_SRC_DATA_H_ 9 10 #include <zephyr/bluetooth/uuid.h> 11 12 static uint8_t payload_1[] = {0xab, 0xcd}; 13 static uint8_t payload_2[] = {0x13, 0x37}; 14 15 /* Both payloads are assumed to be the same size in order to simplify the test 16 * procedure. 17 */ 18 BUILD_ASSERT(sizeof(payload_1) == sizeof(payload_2), 19 "Both payloads should be of equal length"); 20 21 #define test_service_uuid \ 22 BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0xf0debc9a, 0x7856, 0x3412, 0x7856, 0x341278563412)) 23 #define test_characteristic_uuid \ 24 BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0xf2debc9a, 0x7856, 0x3412, 0x7856, 0x341278563412)) 25 26 #endif /* ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_MISC_SAMPLE_TEST_SRC_DATA_H_ */ 27