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_GATT_SETTINGS_CLEAR_SRC_COMMON_H_
8 #define ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_GATT_SETTINGS_CLEAR_SRC_COMMON_H_
9 
10 #include <zephyr/bluetooth/bluetooth.h>
11 
12 #define ADVERTISER_NAME "Advertiser Pro II"
13 
14 #define test_service_uuid                                                                          \
15 	BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0x2e2b8dc3, 0x06e0, 0x4f93, 0x9bb2, 0x734091c356f0))
16 #define test_characteristic_uuid                                                                   \
17 	BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0x2e2b8dc3, 0x06e0, 0x4f93, 0x9bb2, 0x734091c356f3))
18 
19 #endif /* ZEPHYR_TESTS_BSIM_BLUETOOTH_HOST_GATT_SETTINGS_CLEAR_SRC_COMMON_H_ */
20