blob: 0939dc3f4a72521f1876b1c591a30ef3959e3dd1 [file] [log] [blame]
/**
* Copyright (c) 2019 Oticon A/S
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief Service D
*
* This code is auto-generated from the Excel Workbook
* 'GATT_Test_Databases.xlsm' Sheet: 'Large Database 3'
*/
#include <zephyr/sys/byteorder.h>
#include <zephyr/sys/printk.h>
#include <zephyr/bluetooth/gatt.h>
#include "gatt_macs.h"
extern struct bt_gatt_attr service_c_1_3_attrs[];
/**
* @brief UUID for the Service D
*/
#define BT_UUID_SERVICE_D BT_UUID_DECLARE_16(0xa00d)
/**
* @brief UUID for the Value V12 Characteristic
*/
#define BT_UUID_VALUE_V12 BT_UUID_DECLARE_16(0xb00c)
/**
* @brief UUID for the Value V11 (128-bit UUID) Characteristic
*/
#define BT_UUID_VALUE_V11__128_BIT_UUID BT_UUID_DECLARE_128( \
0xef, 0xcd, 0xab, 0x89, 0x67, 0x45, 0x23, 0x01, \
0x00, 0x00, 0x00, 0x00, 0x0b, 0xb0, 0x00, 0x00)
static uint8_t value_v12_value = 0x0C;
static uint8_t value_v11__128_bit_uuid_value = 0x0B;
/**
* @brief Attribute read call back for the Value V12 attribute
*
* @param conn The connection that is requesting to read
* @param attr The attribute that's being read
* @param buf Buffer to place the read result in
* @param len Length of data to read
* @param offset Offset to start reading from
*
* @return Number of bytes read, or in case of an error - BT_GATT_ERR()
* with a specific ATT error code.
*/
static ssize_t read_value_v12(struct bt_conn *conn,
const struct bt_gatt_attr *attr, void *buf,
uint16_t len, uint16_t offset)
{
const uint8_t *value = attr->user_data;
return bt_gatt_attr_read(conn, attr, buf, len, offset, value,
sizeof(value_v12_value));
}
/**
* @brief Attribute read call back for the Value V11 (128-bit UUID) attribute
*
* @param conn The connection that is requesting to read
* @param attr The attribute that's being read
* @param buf Buffer to place the read result in
* @param len Length of data to read
* @param offset Offset to start reading from
*
* @return Number of bytes read, or in case of an error - BT_GATT_ERR()
* with a specific ATT error code.
*/
static ssize_t read_value_v11__128_bit_uuid(struct bt_conn *conn,
const struct bt_gatt_attr *attr,
void *buf, uint16_t len, uint16_t offset)
{
const uint8_t *value = attr->user_data;
return bt_gatt_attr_read(conn, attr, buf, len, offset, value,
sizeof(value_v11__128_bit_uuid_value));
}
struct bt_gatt_attr service_d_3_attrs[] = {
BT_GATT_H_SECONDARY_SERVICE(BT_UUID_SERVICE_D, 0x20),
BT_GATT_H_INCLUDE_SERVICE(service_c_1_3_attrs, 0x21),
BT_GATT_H_CHARACTERISTIC(BT_UUID_VALUE_V12,
BT_GATT_CHRC_READ,
BT_GATT_PERM_READ,
read_value_v12, NULL, &value_v12_value, 0x22),
BT_GATT_H_CHARACTERISTIC(BT_UUID_VALUE_V11__128_BIT_UUID,
BT_GATT_CHRC_READ,
BT_GATT_PERM_READ,
read_value_v11__128_bit_uuid, NULL,
&value_v11__128_bit_uuid_value, 0x24)
};
static struct bt_gatt_service service_d_3_svc =
BT_GATT_SERVICE(service_d_3_attrs);
/**
* @brief Register the Service D and all its Characteristics...
*/
void service_d_3_init(void)
{
bt_gatt_service_register(&service_d_3_svc);
}
/**
* @brief Un-Register the Service D and all its Characteristics...
*/
void service_d_3_remove(void)
{
bt_gatt_service_unregister(&service_d_3_svc);
}