blob: 87101f404d33784a6abdde997bfe49b3a3f61237 [file] [log] [blame]
/**
* Copyright (c) 2019 Oticon A/S
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief Service E
*
* 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"
/**
* @brief UUID for the Service E
*/
#define BT_UUID_SERVICE_E BT_UUID_DECLARE_16(0xa00e)
static struct bt_gatt_attr service_e_3_attrs[] = {
BT_GATT_H_PRIMARY_SERVICE(BT_UUID_SERVICE_E, 0xFFFF)
};
static struct bt_gatt_service service_e_3_svc =
BT_GATT_SERVICE(service_e_3_attrs);
/**
* @brief Register the Service E and all its Characteristics...
*/
void service_e_3_init(void)
{
bt_gatt_service_register(&service_e_3_svc);
}
/**
* @brief Un-Register the Service E and all its Characteristics...
*/
void service_e_3_remove(void)
{
bt_gatt_service_unregister(&service_e_3_svc);
}