1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/bluetooth/gatt.h> 8 9 #define NAME_LEN 30 10 #define STEP_DATA_BUF_LEN 512 /* Maximum GATT characteristic length */ 11 12 static struct bt_uuid_128 step_data_char_uuid = 13 BT_UUID_INIT_128(BT_UUID_128_ENCODE(0x87654321, 0x4567, 0x2389, 0x1254, 0xf67f9fedcba8)); 14 static const struct bt_uuid_128 step_data_svc_uuid = 15 BT_UUID_INIT_128(BT_UUID_128_ENCODE(0x87654321, 0x4567, 0x2389, 0x1254, 0xf67f9fedcba9)); 16