mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 04:41:57 +00:00
GAP is mandatory service and now that the db can only be build dynamically there is no reason to keep the applications registering it. Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
24 lines
602 B
C
24 lines
602 B
C
/** @file
|
|
* @brief Internal API for Generic Attribute Profile handling.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2015-2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
void bt_gatt_init(void);
|
|
void bt_gatt_connected(struct bt_conn *conn);
|
|
void bt_gatt_disconnected(struct bt_conn *conn);
|
|
|
|
#if defined(CONFIG_BLUETOOTH_GATT_CLIENT)
|
|
void bt_gatt_notification(struct bt_conn *conn, u16_t handle,
|
|
const void *data, u16_t length);
|
|
#else
|
|
static inline void bt_gatt_notification(struct bt_conn *conn, u16_t handle,
|
|
const void *data, u16_t length)
|
|
{
|
|
}
|
|
#endif /* CONFIG_BLUETOOTH_GATT_CLIENT */
|