mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 21:21:56 +00:00
Add read parameters to read callabck Merge bt_gatt_read_multiple functionality into bt_gatt_read. This makes it easier for application to handle all types of reads as same sematics is kept for them. Instead of destroy callback, call read_func with NULL data to indicated that read has completed. This makes it clear when read is completed and parameters used for it are no longer needed. Thanks to this application doesn't need to abuse user data destroy callback for detecting if read has completed. Since destroy callback is no longer needed it is removed. Also note that bt_gatt_read doesn't take any user data parameter and that destroy callback was acctually called with read parameters. If application would require to pass user data along with parameters it may use CONTAINER_OF macro along with bt_gatt_read_params. Change-Id: I8d6ea136b1e61c1dae73cca868b53c48c45a5492 Signed-off-by: Szymon Janc <ext.szymon.janc@tieto.com>
933 lines
28 KiB
C
933 lines
28 KiB
C
/** @file
|
|
* @brief Generic Attribute Profile handling.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#ifndef __BT_GATT_H
|
|
#define __BT_GATT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined(CONFIG_BLUETOOTH_CENTRAL) || defined(CONFIG_BLUETOOTH_PERIPHERAL)
|
|
#include <stddef.h>
|
|
#include <misc/util.h>
|
|
#include <bluetooth/conn.h>
|
|
#include <bluetooth/uuid.h>
|
|
|
|
/* GATT attribute permission bit field values */
|
|
|
|
/** @def BT_GATT_PERM_READ
|
|
* @brief Attribute read permission.
|
|
*/
|
|
#define BT_GATT_PERM_READ 0x01
|
|
/** @def BT_GATT_PERM_WRITE
|
|
* @brief Attribute write permission.
|
|
*/
|
|
#define BT_GATT_PERM_WRITE 0x02
|
|
/** @def BT_GATT_PERM_READ_ENCRYPT
|
|
* @brief Attribute read permission with encryption.
|
|
*
|
|
* If set, requires encryption for read access.
|
|
*/
|
|
#define BT_GATT_PERM_READ_ENCRYPT 0x04
|
|
/** @def BT_GATT_PERM_WRITE_ENCRYPT
|
|
* @brief Attribute write permission with encryption.
|
|
*
|
|
* If set, requires encryption for write access.
|
|
*/
|
|
#define BT_GATT_PERM_WRITE_ENCRYPT 0x08
|
|
/** @def BT_GATT_PERM_READ_AUTHEN
|
|
* @brief Attribute read permission with authentication.
|
|
*
|
|
* If set, requires encryption using authenticated link-key for read access.
|
|
*/
|
|
#define BT_GATT_PERM_READ_AUTHEN 0x10
|
|
/** @def BT_GATT_PERM_WRITE_AUTHEN
|
|
* @brief Attribute write permission with authentication.
|
|
*
|
|
* If set, requires encryption using authenticated link-key for write access.
|
|
*/
|
|
#define BT_GATT_PERM_WRITE_AUTHEN 0x20
|
|
/** @def BT_GATT_PERM_READ_AUTHOR
|
|
* @brief Attribute read permission with authorization.
|
|
*
|
|
* If set, requires authorization for read access.
|
|
*/
|
|
#define BT_GATT_PERM_READ_AUTHOR 0x40
|
|
/** @def BT_GATT_PERM_WRITE_AUTHOR
|
|
* @brief Attribute write permission with authorization.
|
|
*
|
|
* If set, requires authorization for write access.
|
|
*/
|
|
#define BT_GATT_PERM_WRITE_AUTHOR 0x80
|
|
|
|
/* GATT attribute flush flags */
|
|
/** @def BT_GATT_FLUSH_DISCARD
|
|
* @brief Attribute flush discard flag.
|
|
*/
|
|
#define BT_GATT_FLUSH_DISCARD 0x00
|
|
/** @def BT_GATT_FLUSH_DISCARD
|
|
* @brief Attribute flush synchronize flag.
|
|
*/
|
|
#define BT_GATT_FLUSH_SYNC 0x01
|
|
|
|
/** @brief GATT Attribute structure. */
|
|
struct bt_gatt_attr {
|
|
/** Attribute UUID */
|
|
const struct bt_uuid *uuid;
|
|
/** Attribute read callback */
|
|
int (*read)(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
void *buf, uint16_t len,
|
|
uint16_t offset);
|
|
/** Attribute write callback */
|
|
int (*write)(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
const void *buf, uint16_t len,
|
|
uint16_t offset);
|
|
/** Attribute flush callback */
|
|
int (*flush)(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
uint8_t flags);
|
|
/** Attribute user data */
|
|
void *user_data;
|
|
/** Attribute handle */
|
|
uint16_t handle;
|
|
/** Attribute permissions */
|
|
uint8_t perm;
|
|
#if defined(CONFIG_BLUETOOTH_GATT_DYNAMIC_DB)
|
|
struct bt_gatt_attr *_next;
|
|
#endif /* CONFIG_BLUETOOTH_GATT_DYNAMIC_DB */
|
|
};
|
|
|
|
/** @brief Service Attribute Value. */
|
|
struct bt_gatt_service {
|
|
/** Service UUID. */
|
|
const struct bt_uuid *uuid;
|
|
/** Service end handle. */
|
|
uint16_t end_handle;
|
|
};
|
|
|
|
/** @brief Include Attribute Value. */
|
|
struct bt_gatt_include {
|
|
/** Service UUID. */
|
|
const struct bt_uuid *uuid;
|
|
/** Service start handle. */
|
|
uint16_t start_handle;
|
|
/** Service end handle. */
|
|
uint16_t end_handle;
|
|
};
|
|
|
|
/* Characteristic Properties Bit field values */
|
|
|
|
/** @def BT_GATT_CHRC_BROADCAST
|
|
* @brief Characteristic broadcast property.
|
|
*
|
|
* If set, permits broadcasts of the Characteristic Value using Server
|
|
* Characteristic Configuration Descriptor.
|
|
*/
|
|
#define BT_GATT_CHRC_BROADCAST 0x01
|
|
/** @def BT_GATT_CHRC_READ
|
|
* @brief Characteristic read property.
|
|
*
|
|
* If set, permits reads of the Characteristic Value.
|
|
*/
|
|
#define BT_GATT_CHRC_READ 0x02
|
|
/** @def BT_GATT_CHRC_WRITE_WITHOUT_RESP
|
|
* @brief Characteristic write without response property.
|
|
*
|
|
* If set, permits write of the Characteristic Value without response.
|
|
*/
|
|
#define BT_GATT_CHRC_WRITE_WITHOUT_RESP 0x04
|
|
/** @def BT_GATT_CHRC_WRITE
|
|
* @brief Characteristic write with response property.
|
|
*
|
|
* If set, permits write of the Characteristic Value with response.
|
|
*/
|
|
#define BT_GATT_CHRC_WRITE 0x08
|
|
/** @def BT_GATT_CHRC_NOTIFY
|
|
* @brief Characteristic notify property.
|
|
*
|
|
* If set, permits notifications of a Characteristic Value without
|
|
* acknowledgment.
|
|
*/
|
|
#define BT_GATT_CHRC_NOTIFY 0x10
|
|
/** @def BT_GATT_CHRC_INDICATE
|
|
* @brief Characteristic indicate property.
|
|
*
|
|
* If set, permits indications of a Characteristic Value with acknowledgment.
|
|
*/
|
|
#define BT_GATT_CHRC_INDICATE 0x20
|
|
/** @def BT_GATT_CHRC_AUTH
|
|
* @brief Characteristic Authenticated Signed Writes property.
|
|
*
|
|
* If set, permits signed writes to the Characteristic Value.
|
|
*/
|
|
#define BT_GATT_CHRC_AUTH 0x40
|
|
/** @def BT_GATT_CHRC_EXT_PROP
|
|
* @brief Characteristic Extended Properties property.
|
|
*
|
|
* If set, additional characteristic properties are defined in the
|
|
* Characteristic Extended Properties Descriptor.
|
|
*/
|
|
#define BT_GATT_CHRC_EXT_PROP 0x80
|
|
|
|
/** @brief Characteristic Attribute Value. */
|
|
struct bt_gatt_chrc {
|
|
/** Characteristic UUID. */
|
|
const struct bt_uuid *uuid;
|
|
/** Characteristic properties. */
|
|
uint8_t properties;
|
|
};
|
|
|
|
/* Characteristic Extended Properties Bit field values */
|
|
#define BT_GATT_CEP_RELIABLE_WRITE 0x0001
|
|
#define BT_GATT_CEP_WRITABLE_AUX 0x0002
|
|
|
|
/** @brief Characteristic Extended Properties Attribute Value. */
|
|
struct bt_gatt_cep {
|
|
/** Characteristic Extended properties */
|
|
uint16_t properties;
|
|
};
|
|
|
|
/* Client Characteristic Configuration Values */
|
|
|
|
/** @def BT_GATT_CCC_NOTIFY
|
|
* @brief Client Characteristic Configuration Notification.
|
|
*
|
|
* If set, changes to Characteristic Value shall be notified.
|
|
*/
|
|
#define BT_GATT_CCC_NOTIFY 0x0001
|
|
/** @def BT_GATT_CCC_INDICATE
|
|
* @brief Client Characteristic Configuration Indication.
|
|
*
|
|
* If set, changes to Characteristic Value shall be indicated.
|
|
*/
|
|
#define BT_GATT_CCC_INDICATE 0x0002
|
|
|
|
/* Client Characteristic Configuration Attribute Value */
|
|
struct bt_gatt_ccc {
|
|
/** Client Characteristic Configuration flags */
|
|
uint16_t flags;
|
|
};
|
|
|
|
/** @brief GATT Characteristic Presentation Format Attribute Value. */
|
|
struct bt_gatt_cpf {
|
|
/** Format of the value of the characteristic */
|
|
uint8_t format;
|
|
/** Exponent field to determine how the value of this characteristic is further formatted */
|
|
int8_t exponent;
|
|
/** Unit of the characteristic */
|
|
uint16_t unit;
|
|
/** Name space of the description */
|
|
uint8_t name_space;
|
|
/** Description of the characteristic as defined in a higher layer profile */
|
|
uint16_t description;
|
|
} __packed;
|
|
|
|
/* Server API */
|
|
|
|
/** @brief Register attribute database.
|
|
*
|
|
* Register GATT attribute database table. Applications can make use of
|
|
* macros such as BT_GATT_PRIMARY_SERVICE, BT_GATT_CHARACTERISTIC,
|
|
* BT_GATT_DESCRIPTOR, etc.
|
|
*
|
|
* @param attrs Database table containing the available attributes.
|
|
* @param count Size of the database table.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_register(struct bt_gatt_attr *attrs, size_t count);
|
|
|
|
enum {
|
|
BT_GATT_ITER_STOP = 0,
|
|
BT_GATT_ITER_CONTINUE,
|
|
};
|
|
|
|
/** @brief Attribute iterator callback.
|
|
*
|
|
* @param attr Attribute found.
|
|
* @param user_data Data given.
|
|
*
|
|
* @return BT_GATT_ITER_CONTINUE if should continue to the next attribute
|
|
* or BT_GATT_ITER_STOP to stop.
|
|
*/
|
|
typedef uint8_t (*bt_gatt_attr_func_t)(const struct bt_gatt_attr *attr,
|
|
void *user_data);
|
|
|
|
/** @brief Attribute iterator.
|
|
*
|
|
* Iterate attributes in the given range.
|
|
*
|
|
* @param start_handle Start handle.
|
|
* @param end_handle End handle.
|
|
* @param func Callback function.
|
|
* @param user_data Data to pass to the callback.
|
|
*/
|
|
void bt_gatt_foreach_attr(uint16_t start_handle, uint16_t end_handle,
|
|
bt_gatt_attr_func_t func, void *user_data);
|
|
|
|
/** @brief Iterate to the next attribute
|
|
*
|
|
* Iterate to the next attribute following a given attribute.
|
|
*
|
|
* @param attr Current Attribute.
|
|
*
|
|
* @return The next attribute or NULL if it cannot be found.
|
|
*/
|
|
struct bt_gatt_attr *bt_gatt_attr_next(const struct bt_gatt_attr *attr);
|
|
|
|
/** @brief Generic Read Attribute value helper.
|
|
*
|
|
* Read attribute value storing the result into buffer.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value.
|
|
* @param buf_len Buffer length.
|
|
* @param offset Start offset.
|
|
* @param value Attribute value.
|
|
* @param value_len Length of the attribute value.
|
|
*
|
|
* @return int number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read(struct bt_conn *conn, const struct bt_gatt_attr *attr,
|
|
void *buf, uint16_t buf_len, uint16_t offset,
|
|
const void *value, uint16_t value_len);
|
|
|
|
/** @brief Read Service Attribute helper.
|
|
*
|
|
* Read service attribute value storing the result into buffer after
|
|
* enconding it.
|
|
* NOTE: Only use this with attributes which user_data is a bt_uuid.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value read.
|
|
* @param len Buffer length.
|
|
* @param offset Start offset.
|
|
*
|
|
* @return int number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_service(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
void *buf, uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_SERVICE
|
|
* @brief Generic Service Declaration Macro.
|
|
*
|
|
* Helper macro to declare a service attribute.
|
|
*
|
|
* @param _uuid Service attribute type.
|
|
* @param _data Service attribute value.
|
|
*/
|
|
#define BT_GATT_SERVICE(_uuid, _service) \
|
|
{ \
|
|
.uuid = _uuid, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_service, \
|
|
.user_data = _service, \
|
|
}
|
|
|
|
/** @def BT_GATT_PRIMARY_SERVICE
|
|
* @brief Primary Service Declaration Macro.
|
|
*
|
|
* Helper macro to declare a primary service attribute.
|
|
*
|
|
* @param _service Service attribute value.
|
|
*/
|
|
#define BT_GATT_PRIMARY_SERVICE(_service) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_PRIMARY, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_service, \
|
|
.user_data = _service, \
|
|
}
|
|
|
|
/** @def BT_GATT_SECONDARY_SERVICE
|
|
* @brief Secondary Service Declaration Macro.
|
|
*
|
|
* Helper macro to declare a secondary service attribute.
|
|
*
|
|
* @param _service Service attribute value.
|
|
*/
|
|
#define BT_GATT_SECONDARY_SERVICE(_service) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_SECONDARY, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_service, \
|
|
.user_data = _service, \
|
|
}
|
|
|
|
/** @brief Read Include Attribute helper.
|
|
*
|
|
* Read include service attribute value storing the result into buffer after
|
|
* enconding it.
|
|
* NOTE: Only use this with attributes which user_data is a bt_gatt_include.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value read.
|
|
* @param len Buffer length.
|
|
* @param offset Start offset.
|
|
*
|
|
* @return int number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_included(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
void *buf, uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_INCLUDE_SERVICE
|
|
* @brief Include Service Declaration Macro.
|
|
*
|
|
* Helper macro to declare a include service attribute.
|
|
*
|
|
* @param _service Service attribute value.
|
|
*/
|
|
#define BT_GATT_INCLUDE_SERVICE(_service) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_INCLUDE, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_included, \
|
|
.user_data = _service, \
|
|
}
|
|
|
|
/** @brief Read Characteristic Attribute helper.
|
|
*
|
|
* Read characteristic attribute value storing the result into buffer after
|
|
* enconding it.
|
|
* NOTE: Only use this with attributes which user_data is a bt_gatt_chrc.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value read.
|
|
* @param len Buffer length.
|
|
* @param offset Start offset.
|
|
*
|
|
* @return number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_chrc(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_CHARACTERISTIC
|
|
* @brief Characteristic Declaration Macro.
|
|
*
|
|
* Helper macro to declare a characteristic attribute.
|
|
*
|
|
* @param _uuid Characteristic attribute uuid.
|
|
* @param _props Characteristic attribute properties.
|
|
*/
|
|
#define BT_GATT_CHARACTERISTIC(_uuid, _props) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_CHRC, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_chrc, \
|
|
.user_data = (&(struct bt_gatt_chrc) { .uuid = _uuid, \
|
|
.properties = _props, }),\
|
|
}
|
|
|
|
/** @brief GATT CCC configuration entry. */
|
|
struct bt_gatt_ccc_cfg {
|
|
/** Config peer address. */
|
|
bt_addr_le_t peer;
|
|
/** Config peer value. */
|
|
uint16_t value;
|
|
/** Config valid flag. */
|
|
uint8_t valid;
|
|
};
|
|
|
|
/* Internal representation of CCC value */
|
|
struct _bt_gatt_ccc {
|
|
struct bt_gatt_ccc_cfg *cfg;
|
|
size_t cfg_len;
|
|
uint16_t value;
|
|
void (*cfg_changed)(uint16_t value);
|
|
};
|
|
|
|
/** @brief Read Client Characteristic Configuration Attribute helper.
|
|
*
|
|
* Read CCC attribute value storing the result into buffer after
|
|
* enconding it.
|
|
* NOTE: Only use this with attributes which user_data is a _bt_gatt_ccc.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value read.
|
|
* @param len Buffer length.
|
|
* @param offset Start offset.
|
|
*
|
|
* @return number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_ccc(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @brief Write Client Characteristic Configuration Attribute helper.
|
|
*
|
|
* Write value in the buffer into CCC attribute.
|
|
* NOTE: Only use this with attributes which user_data is a _bt_gatt_ccc.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute to read.
|
|
* @param buf Buffer to store the value read.
|
|
* @param len Buffer length.
|
|
* @param offset Start offset.
|
|
*
|
|
* @return number of bytes written in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_write_ccc(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, const void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_CCC
|
|
* @brief Client Characteristic Configuration Declaration Macro.
|
|
*
|
|
* Helper macro to declare a CCC attribute.
|
|
*
|
|
* @param _cfg Initial configuration.
|
|
* @param _cfg_changed Configuration changed callback.
|
|
*/
|
|
#define BT_GATT_CCC(_cfg, _cfg_changed) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_CCC, \
|
|
.perm = BT_GATT_PERM_READ | BT_GATT_PERM_WRITE, \
|
|
.read = bt_gatt_attr_read_ccc, \
|
|
.write = bt_gatt_attr_write_ccc, \
|
|
.user_data = (&(struct _bt_gatt_ccc) { .cfg = _cfg, \
|
|
.cfg_len = ARRAY_SIZE(_cfg), \
|
|
.cfg_changed = _cfg_changed, }),\
|
|
}
|
|
|
|
/** @brief Read Characteristic Extended Properties Attribute helper
|
|
*
|
|
* Read CEP attribute value storing the result into buffer after
|
|
* encoding it.
|
|
* NOTE: Only use this with attributes which user_data is a bt_gatt_cep.
|
|
*
|
|
* @param conn Connection object
|
|
* @param attr Attribute to read
|
|
* @param buf Buffer to store the value read
|
|
* @param len Buffer length
|
|
* @param offset Start offset
|
|
*
|
|
* @return number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_cep(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_CEP
|
|
* @brief Characteristic Extended Properties Declaration Macro.
|
|
*
|
|
* Helper macro to declare a CEP attribute.
|
|
*
|
|
* @param _value Descriptor attribute value.
|
|
*/
|
|
#define BT_GATT_CEP(_value) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_CEP, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_cep, \
|
|
.user_data = _value, \
|
|
}
|
|
|
|
/** @brief Read Characteristic User Description Descriptor Attribute helper
|
|
*
|
|
* Read CUD attribute value storing the result into buffer after
|
|
* encoding it.
|
|
* NOTE: Only use this with attributes which user_data is a NULL-terminated C string.
|
|
*
|
|
* @param conn Connection object
|
|
* @param attr Attribute to read
|
|
* @param buf Buffer to store the value read
|
|
* @param len Buffer length
|
|
* @param offset Start offset
|
|
*
|
|
* @return number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_cud(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_CUD
|
|
* @brief Characteristic User Format Descriptor Declaration Macro.
|
|
*
|
|
* Helper macro to declare a CUD attribute.
|
|
*
|
|
* @param _value User description NULL-terminated C string.
|
|
* @param _perm Descriptor attribute access permissions.
|
|
*/
|
|
#define BT_GATT_CUD(_value, _perm) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_CUD, \
|
|
.perm = _perm, \
|
|
.read = bt_gatt_attr_read_cud, \
|
|
.user_data = _value, \
|
|
}
|
|
|
|
/** @brief Read Characteristic Presentation format Descriptor Attribute helper
|
|
*
|
|
* Read CPF attribute value storing the result into buffer after
|
|
* encoding it.
|
|
* NOTE: Only use this with attributes which user_data is a bt_gatt_pf.
|
|
*
|
|
* @param conn Connection object
|
|
* @param attr Attribute to read
|
|
* @param buf Buffer to store the value read
|
|
* @param len Buffer length
|
|
* @param offset Start offset
|
|
*
|
|
* @return number of bytes read in case of success or negative values in
|
|
* case of error.
|
|
*/
|
|
int bt_gatt_attr_read_cpf(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr, void *buf,
|
|
uint16_t len, uint16_t offset);
|
|
|
|
/** @def BT_GATT_CPF
|
|
* @brief Characteristic Presentation Format Descriptor Declaration Macro.
|
|
*
|
|
* Helper macro to declare a CPF attribute.
|
|
*
|
|
* @param _value Descriptor attribute value.
|
|
*/
|
|
#define BT_GATT_CPF(_value) \
|
|
{ \
|
|
.uuid = BT_UUID_GATT_CPF, \
|
|
.perm = BT_GATT_PERM_READ, \
|
|
.read = bt_gatt_attr_read_cpf, \
|
|
.user_data = _value, \
|
|
}
|
|
|
|
/** @def BT_GATT_DESCRIPTOR
|
|
* @brief Descriptor Declaration Macro.
|
|
*
|
|
* Helper macro to declare a descriptor attribute.
|
|
*
|
|
* @param _uuid Descriptor attribute uuid.
|
|
* @param _perm Descriptor attribute access permissions.
|
|
* @param _read Descriptor attribute read callback.
|
|
* @param _write Descriptor attribute write callback.
|
|
* @param _value Descriptor attribute value.
|
|
*/
|
|
#define BT_GATT_DESCRIPTOR(_uuid, _perm, _read, _write, _value) \
|
|
{ \
|
|
.uuid = _uuid, \
|
|
.perm = _perm, \
|
|
.read = _read, \
|
|
.write = _write, \
|
|
.user_data = _value, \
|
|
}
|
|
|
|
/** @def BT_GATT_LONG_DESCRIPTOR
|
|
* @brief Descriptor Declaration Macro.
|
|
*
|
|
* Helper macro to declare a descriptor attribute.
|
|
*
|
|
* @param _uuid Descriptor attribute uuid.
|
|
* @param _perm Descriptor attribute access permissions.
|
|
* @param _read Descriptor attribute read callback.
|
|
* @param _write Descriptor attribute write callback.
|
|
* @param _flush Descriptor attribute flush callback.
|
|
* @param _value Descriptor attribute value.
|
|
*/
|
|
#define BT_GATT_LONG_DESCRIPTOR(_uuid, _perm, _read, _write, _flush, _value) \
|
|
{ \
|
|
.uuid = _uuid, \
|
|
.perm = _perm, \
|
|
.read = _read, \
|
|
.write = _write, \
|
|
.flush = _flush, \
|
|
.user_data = _value, \
|
|
}
|
|
|
|
/** @brief Notify attribute value change.
|
|
*
|
|
* Send notification of attribute value change, if connection is NULL notify
|
|
* all peer that have notification enabled via CCC otherwise do a direct
|
|
* notification only the given connection.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute object.
|
|
* @param value Attribute value.
|
|
* @param len Attribute value length.
|
|
*/
|
|
int bt_gatt_notify(struct bt_conn *conn, const struct bt_gatt_attr *attr,
|
|
const void *data, uint16_t len);
|
|
|
|
#if defined(CONFIG_BLUETOOTH_GATT_CLIENT)
|
|
/* Client API */
|
|
|
|
/** @brief Response callback function
|
|
*
|
|
* @param conn Connection object.
|
|
* @param err Error code.
|
|
*/
|
|
typedef void (*bt_gatt_rsp_func_t)(struct bt_conn *conn, uint8_t err);
|
|
|
|
/** @brief Exchange MTU
|
|
*
|
|
* This client procedure can be used to set the MTU to the maximum possible
|
|
* size the buffers can hold.
|
|
* NOTE: Shall only be used once per connection.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param func Exchange MTU Response callback function.
|
|
*/
|
|
int bt_gatt_exchange_mtu(struct bt_conn *conn, bt_gatt_rsp_func_t func);
|
|
|
|
struct bt_gatt_discover_params;
|
|
|
|
/** @brief Discover attribute callback function.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param attr Attribute found.
|
|
* @param params Discovery parameters given.
|
|
*
|
|
* If discovery procedure has completed this callback will be called with
|
|
* attr set to NULL. This will not happen if procedure was stopped by returning
|
|
* BT_GATT_ITER_STOP.
|
|
*
|
|
* @return BT_GATT_ITER_CONTINUE if should continue attribute discovery
|
|
* or BT_GATT_ITER_STOP to stop discovery procedure.
|
|
*/
|
|
typedef uint8_t (*bt_gatt_discover_func_t)(struct bt_conn *conn,
|
|
const struct bt_gatt_attr *attr,
|
|
struct bt_gatt_discover_params *params);
|
|
|
|
enum {
|
|
BT_GATT_DISCOVER_PRIMARY,
|
|
BT_GATT_DISCOVER_SECONDARY,
|
|
BT_GATT_DISCOVER_INCLUDE,
|
|
BT_GATT_DISCOVER_CHARACTERISTIC,
|
|
BT_GATT_DISCOVER_DESCRIPTOR,
|
|
};
|
|
|
|
/** @brief GATT Discover Attributes parameters */
|
|
struct bt_gatt_discover_params {
|
|
/** Discover UUID type */
|
|
struct bt_uuid *uuid;
|
|
/** Discover attribute callback */
|
|
bt_gatt_discover_func_t func;
|
|
/** Discover start handle */
|
|
uint16_t start_handle;
|
|
/** Discover end handle */
|
|
uint16_t end_handle;
|
|
/** Discover type */
|
|
uint8_t type;
|
|
};
|
|
|
|
/** @brief GATT Discover function
|
|
*
|
|
* This procedure is used by a client to discover attributes on a server.
|
|
*
|
|
* Primary Service Discovery: Procedure allows to discover specific Primary
|
|
* Service based on UUID.
|
|
* Include Service Discovery: Procedure allows to discover all Include Services
|
|
* within specified range.
|
|
* Characteristic Discovery: Procedure allows to discover all characteristics
|
|
* within specified handle range as well as
|
|
* discover characteristics with specified UUID.
|
|
* Descriptors Discovery: Procedure allows to discover all characteristic
|
|
* descriptors within specified range.
|
|
*
|
|
* For each attribute found the callback is called which can then decide
|
|
* whether to continue discovering or stop.
|
|
*
|
|
* Note: This procedure is asynchronous therefore the parameters need to
|
|
* remains valid while it is active.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param params Discover parameters.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_discover(struct bt_conn *conn,
|
|
struct bt_gatt_discover_params *params);
|
|
|
|
struct bt_gatt_read_params;
|
|
|
|
/** @brief Read callback function
|
|
*
|
|
* @param conn Connection object.
|
|
* @param err Error code.
|
|
* @param params Read parameters used.
|
|
* @param data Attribute value data. NULL means read has completed.
|
|
* @param length Attribute value length.
|
|
*/
|
|
typedef uint8_t (*bt_gatt_read_func_t)(struct bt_conn *conn, int err,
|
|
struct bt_gatt_read_params *params,
|
|
const void *data, uint16_t length);
|
|
|
|
/** @brief GATT Read parameters */
|
|
struct bt_gatt_read_params {
|
|
/** Read attribute callback */
|
|
bt_gatt_read_func_t func;
|
|
/** Handles count.
|
|
* If equals to 1 single.handle and single.offset are used.
|
|
* If >1 Read Multiple Characteristic Values is performed and handles
|
|
* are used.
|
|
*/
|
|
size_t handle_count;
|
|
union {
|
|
struct {
|
|
/** Attribute handle */
|
|
uint16_t handle;
|
|
/** Attribute data offset */
|
|
uint16_t offset;
|
|
} single;
|
|
/** Handles to read in Read Multiple Characteristic Values */
|
|
uint16_t *handles;
|
|
};
|
|
};
|
|
|
|
/** @brief Read Attribute Value by handle
|
|
*
|
|
* This procedure read the attribute value and return it to the callback.
|
|
*
|
|
* Note: This procedure is asynchronous therefore the parameters need to
|
|
* remains valid while it is active.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param params Read parameters.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_read(struct bt_conn *conn, struct bt_gatt_read_params *params);
|
|
|
|
/** @brief Write Attribute Value by handle
|
|
*
|
|
* This procedure write the attribute value and return the result in the
|
|
* callback.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param handle Attribute handle.
|
|
* @param offset Attribute data offset.
|
|
* @param data Data to be written.
|
|
* @param length Data length.
|
|
* @param func Callback function.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_write(struct bt_conn *conn, uint16_t handle, uint16_t offset,
|
|
const void *data, uint16_t length, bt_gatt_rsp_func_t func);
|
|
|
|
/** @brief Write Attribute Value by handle without response
|
|
*
|
|
* This procedure write the attribute value without requiring an
|
|
* acknowledgement that the write was successfully performed
|
|
*
|
|
* @param conn Connection object.
|
|
* @param handle Attribute handle.
|
|
* @param data Data to be written.
|
|
* @param length Data length.
|
|
* @param sign Whether to sign data
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_write_without_response(struct bt_conn *conn, uint16_t handle,
|
|
const void *data, uint16_t length,
|
|
bool sign);
|
|
|
|
struct bt_gatt_subscribe_params;
|
|
|
|
/** @brief Notification callback function
|
|
*
|
|
* @param conn Connection object.
|
|
* @param params Subscription parameters.
|
|
* @param data Attribute value data. If NULL then subscription was removed.
|
|
* @param length Attribute value length.
|
|
*/
|
|
typedef uint8_t (*bt_gatt_notify_func_t)(struct bt_conn *conn,
|
|
struct bt_gatt_subscribe_params *params,
|
|
const void *data, uint16_t length);
|
|
|
|
/** @brief GATT Subscribe parameters */
|
|
struct bt_gatt_subscribe_params {
|
|
bt_addr_le_t _peer;
|
|
/** Notification value callback */
|
|
bt_gatt_notify_func_t notify;
|
|
/** Subscribe value handle */
|
|
uint16_t value_handle;
|
|
/** Subscribe CCC handle */
|
|
uint16_t ccc_handle;
|
|
/** Subscribe value */
|
|
uint16_t value;
|
|
struct bt_gatt_subscribe_params *_next;
|
|
};
|
|
|
|
/** @brief Subscribe Attribute Value Notification
|
|
*
|
|
* This procedure subscribe to value notification using the Client
|
|
* Characteristic Configuration handle.
|
|
* If notification received subscribe value callback is called to return
|
|
* notified value. One may then decide whether to unsubscribe directly from
|
|
* this callback. Notification callback with NULL data will not be called if
|
|
* subscription was removed by this method.
|
|
*
|
|
* Note: This procedure is asynchronous therefore the parameters need to
|
|
* remains valid while it is active.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param params Subscribe parameters.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_subscribe(struct bt_conn *conn,
|
|
struct bt_gatt_subscribe_params *params);
|
|
|
|
/** @brief Unsubscribe Attribute Value Notification
|
|
*
|
|
* This procedure unsubscribe to value notification using the Client
|
|
* Characteristic Configuration handle. Notification callback with NULL data
|
|
* will not be called if subscription was removed by this call.
|
|
*
|
|
* @param conn Connection object.
|
|
* @param params Subscribe parameters.
|
|
*
|
|
* @return 0 in case of success or negative value in case of error.
|
|
*/
|
|
int bt_gatt_unsubscribe(struct bt_conn *conn,
|
|
struct bt_gatt_subscribe_params *params);
|
|
|
|
/** @brief Cancel GATT pending request
|
|
*
|
|
* @param conn Connection object.
|
|
*/
|
|
void bt_gatt_cancel(struct bt_conn *conn);
|
|
|
|
#endif /* CONFIG_BLUETOOTH_GATT_CLIENT */
|
|
#endif /* CONFIG_BLUETOOTH_CENTRAL || CONFIG_BLUETOOTH_PERIPHERAL */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __BT_GATT_H */
|