Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
gatt.h
Go to the documentation of this file.
1
5/*
6 * Copyright (c) 2015-2016 Intel Corporation
7 *
8 * SPDX-License-Identifier: Apache-2.0
9 */
10#ifndef ZEPHYR_INCLUDE_BLUETOOTH_GATT_H_
11#define ZEPHYR_INCLUDE_BLUETOOTH_GATT_H_
12
23#include <stdint.h>
24#include <stddef.h>
25
26#include <sys/types.h>
27
28#include <zephyr/sys/slist.h>
29#include <zephyr/sys/util.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
95
103#define BT_GATT_ERR(_att_err) (-(_att_err))
104
129
130/* Forward declaration of GATT Attribute structure */
131struct bt_gatt_attr;
132
163typedef ssize_t (*bt_gatt_attr_read_func_t)(struct bt_conn *conn,
164 const struct bt_gatt_attr *attr,
165 void *buf, uint16_t len,
166 uint16_t offset);
167
206typedef ssize_t (*bt_gatt_attr_write_func_t)(struct bt_conn *conn,
207 const struct bt_gatt_attr *attr,
208 const void *buf, uint16_t len,
209 uint16_t offset, uint8_t flags);
210
240 const struct bt_uuid *uuid;
241
254
267
280
290
299
308 bool _auto_assigned_handle: 1;
310};
311
320 const struct bt_gatt_attr *attrs;
323};
324
339 sys_snode_t node;
341};
342
354
369
381 void (*att_mtu_updated)(struct bt_conn *conn, uint16_t tx, uint16_t rx);
382
386 sys_snode_t node;
388};
389
403 bool (*read_authorize)(struct bt_conn *conn,
404 const struct bt_gatt_attr *attr);
405
417 bool (*write_authorize)(struct bt_conn *conn,
418 const struct bt_gatt_attr *attr);
419};
420
429#define BT_GATT_CHRC_BROADCAST 0x01
435#define BT_GATT_CHRC_READ 0x02
441#define BT_GATT_CHRC_WRITE_WITHOUT_RESP 0x04
447#define BT_GATT_CHRC_WRITE 0x08
454#define BT_GATT_CHRC_NOTIFY 0x10
460#define BT_GATT_CHRC_INDICATE 0x20
466#define BT_GATT_CHRC_AUTH 0x40
473#define BT_GATT_CHRC_EXT_PROP 0x80
474
488
490#define BT_GATT_CEP_RELIABLE_WRITE 0x0001
491#define BT_GATT_CEP_WRITABLE_AUX 0x0002
492
504
512#define BT_GATT_CCC_NOTIFY 0x0001
518#define BT_GATT_CCC_INDICATE 0x0002
519
528
537#define BT_GATT_SCC_BROADCAST 0x0001
538
547
587
610static inline const char *bt_gatt_err_to_str(int gatt_err)
611{
612 return bt_att_err_to_str((gatt_err) < 0 ? -(gatt_err) : (gatt_err));
613}
614
623
643
671
679
687
691enum {
694};
695
706typedef uint8_t (*bt_gatt_attr_func_t)(const struct bt_gatt_attr *attr,
708 void *user_data);
709
723void bt_gatt_foreach_attr_type(uint16_t start_handle, uint16_t end_handle,
724 const struct bt_uuid *uuid,
725 const void *attr_data, uint16_t num_matches,
727 void *user_data);
728
738static inline void bt_gatt_foreach_attr(uint16_t start_handle, uint16_t end_handle,
740 void *user_data)
741{
742 bt_gatt_foreach_attr_type(start_handle, end_handle, NULL, NULL, 0, func,
743 user_data);
744}
745
754struct bt_gatt_attr *bt_gatt_attr_next(const struct bt_gatt_attr *attr);
755
771 uint16_t attr_count,
772 const struct bt_uuid *uuid);
773
783
796
812ssize_t bt_gatt_attr_read(struct bt_conn *conn, const struct bt_gatt_attr *attr,
813 void *buf, uint16_t buf_len, uint16_t offset,
814 const void *value, uint16_t value_len);
815
832 const struct bt_gatt_attr *attr,
833 void *buf, uint16_t len, uint16_t offset);
834
842#define BT_GATT_SERVICE_DEFINE(_name, ...) \
843 const struct bt_gatt_attr attr_##_name[] = { __VA_ARGS__ }; \
844 const STRUCT_SECTION_ITERABLE(bt_gatt_service_static, _name) = \
845 BT_GATT_SERVICE(attr_##_name)
846
847#define _BT_GATT_ATTRS_ARRAY_DEFINE(n, _instances, _attrs_def) \
848 static struct bt_gatt_attr attrs_##n[] = _attrs_def(_instances[n])
849
850#define _BT_GATT_SERVICE_ARRAY_ITEM(_n, _) BT_GATT_SERVICE(attrs_##_n)
851
867#define BT_GATT_SERVICE_INSTANCE_DEFINE( \
868 _name, _instances, _instance_num, _attrs_def) \
869 BUILD_ASSERT(ARRAY_SIZE(_instances) == _instance_num, \
870 "The number of array elements does not match its size"); \
871 LISTIFY(_instance_num, _BT_GATT_ATTRS_ARRAY_DEFINE, (;), \
872 _instances, _attrs_def); \
873 static struct bt_gatt_service _name[] = { \
874 LISTIFY(_instance_num, _BT_GATT_SERVICE_ARRAY_ITEM, (,)) \
875 }
876
884#define BT_GATT_SERVICE(_attrs) \
885{ \
886 .attrs = _attrs, \
887 .attr_count = ARRAY_SIZE(_attrs), \
888}
889
897#define BT_GATT_PRIMARY_SERVICE(_service) \
898 BT_GATT_ATTRIBUTE(BT_UUID_GATT_PRIMARY, BT_GATT_PERM_READ, \
899 bt_gatt_attr_read_service, NULL, (void *)_service)
900
911#define BT_GATT_SECONDARY_SERVICE(_service) \
912 BT_GATT_ATTRIBUTE(BT_UUID_GATT_SECONDARY, BT_GATT_PERM_READ, \
913 bt_gatt_attr_read_service, NULL, (void *)_service)
914
931 const struct bt_gatt_attr *attr,
932 void *buf, uint16_t len, uint16_t offset);
933
941#define BT_GATT_INCLUDE_SERVICE(_service_incl) \
942 BT_GATT_ATTRIBUTE(BT_UUID_GATT_INCLUDE, BT_GATT_PERM_READ, \
943 bt_gatt_attr_read_included, NULL, _service_incl)
944
960ssize_t bt_gatt_attr_read_chrc(struct bt_conn *conn,
961 const struct bt_gatt_attr *attr, void *buf,
962 uint16_t len, uint16_t offset);
963
974#define BT_GATT_CHRC_INIT(_uuid, _handle, _props) \
975{ \
976 .uuid = _uuid, \
977 .value_handle = _handle, \
978 .properties = _props, \
979}
980
998#define BT_GATT_CHARACTERISTIC(_uuid, _props, _perm, _read, _write, _user_data) \
999 BT_GATT_ATTRIBUTE(BT_UUID_GATT_CHRC, BT_GATT_PERM_READ, \
1000 bt_gatt_attr_read_chrc, NULL, \
1001 ((struct bt_gatt_chrc[]) { \
1002 BT_GATT_CHRC_INIT(_uuid, 0U, _props), \
1003 })), \
1004 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data)
1005
1017#if defined(CONFIG_BT_SETTINGS_CCC_LAZY_LOADING)
1018 #define BT_GATT_CCC_MAX (CONFIG_BT_MAX_CONN)
1019#elif defined(CONFIG_BT_CONN)
1020 #define BT_GATT_CCC_MAX (CONFIG_BT_MAX_PAIRED + CONFIG_BT_MAX_CONN)
1021#else
1022 #define BT_GATT_CCC_MAX 0
1023#endif
1024
1042
1044struct _bt_gatt_ccc {
1046 struct bt_gatt_ccc_cfg cfg[BT_GATT_CCC_MAX];
1047
1049 uint16_t value;
1050
1056 void (*cfg_changed)(const struct bt_gatt_attr *attr, uint16_t value);
1057
1067 ssize_t (*cfg_write)(struct bt_conn *conn,
1068 const struct bt_gatt_attr *attr, uint16_t value);
1069
1081 bool (*cfg_match)(struct bt_conn *conn,
1082 const struct bt_gatt_attr *attr);
1083};
1084
1104ssize_t bt_gatt_attr_read_ccc(struct bt_conn *conn,
1105 const struct bt_gatt_attr *attr, void *buf,
1106 uint16_t len, uint16_t offset);
1107
1127ssize_t bt_gatt_attr_write_ccc(struct bt_conn *conn,
1128 const struct bt_gatt_attr *attr, const void *buf,
1129 uint16_t len, uint16_t offset, uint8_t flags);
1130
1140#define BT_GATT_CCC_INITIALIZER(_changed, _write, _match) \
1141 { \
1142 .cfg = {}, \
1143 .cfg_changed = _changed, \
1144 .cfg_write = _write, \
1145 .cfg_match = _match, \
1146 }
1147
1157#define BT_GATT_CCC_MANAGED(_ccc, _perm) \
1158 BT_GATT_ATTRIBUTE(BT_UUID_GATT_CCC, _perm, \
1159 bt_gatt_attr_read_ccc, bt_gatt_attr_write_ccc, \
1160 _ccc)
1161
1171#define BT_GATT_CCC(_changed, _perm) \
1172 BT_GATT_CCC_MANAGED(((struct _bt_gatt_ccc[]) \
1173 {BT_GATT_CCC_INITIALIZER(_changed, NULL, NULL)}), _perm)
1174
1191ssize_t bt_gatt_attr_read_cep(struct bt_conn *conn,
1192 const struct bt_gatt_attr *attr, void *buf,
1193 uint16_t len, uint16_t offset);
1194
1202#define BT_GATT_CEP(_value) \
1203 BT_GATT_DESCRIPTOR(BT_UUID_GATT_CEP, BT_GATT_PERM_READ, \
1204 bt_gatt_attr_read_cep, NULL, (void *)_value)
1205
1223ssize_t bt_gatt_attr_read_cud(struct bt_conn *conn,
1224 const struct bt_gatt_attr *attr, void *buf,
1225 uint16_t len, uint16_t offset);
1226
1236#define BT_GATT_CUD(_value, _perm) \
1237 BT_GATT_DESCRIPTOR(BT_UUID_GATT_CUD, _perm, bt_gatt_attr_read_cud, \
1238 NULL, (void *)_value)
1239
1256ssize_t bt_gatt_attr_read_cpf(struct bt_conn *conn,
1257 const struct bt_gatt_attr *attr, void *buf,
1258 uint16_t len, uint16_t offset);
1259
1267#define BT_GATT_CPF(_value) \
1268 BT_GATT_DESCRIPTOR(BT_UUID_GATT_CPF, BT_GATT_PERM_READ, \
1269 bt_gatt_attr_read_cpf, NULL, (void *)_value)
1270
1285#define BT_GATT_DESCRIPTOR(_uuid, _perm, _read, _write, _user_data) \
1286 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data)
1287
1300#define BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data) \
1301{ \
1302 .uuid = _uuid, \
1303 .read = _read, \
1304 .write = _write, \
1305 .user_data = _user_data, \
1306 .handle = 0, \
1307 .perm = _perm, \
1308}
1309
1315typedef void (*bt_gatt_complete_func_t) (struct bt_conn *conn, void *user_data);
1316
1327 const struct bt_uuid *uuid;
1333 const struct bt_gatt_attr *attr;
1335 const void *data;
1342#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
1345#endif /* CONFIG_BT_EATT */
1346};
1347
1369int bt_gatt_notify_cb(struct bt_conn *conn,
1370 struct bt_gatt_notify_params *params);
1371
1423int bt_gatt_notify_multiple(struct bt_conn *conn,
1424 uint16_t num_params,
1425 struct bt_gatt_notify_params params[]);
1426
1446static inline int bt_gatt_notify(struct bt_conn *conn,
1447 const struct bt_gatt_attr *attr,
1448 const void *data, uint16_t len)
1449{
1450 struct bt_gatt_notify_params params;
1451
1452 memset(&params, 0, sizeof(params));
1453
1454 params.attr = attr;
1455 params.data = data;
1456 params.len = len;
1457#if defined(CONFIG_BT_EATT)
1459#endif /* CONFIG_BT_EATT */
1460
1461 return bt_gatt_notify_cb(conn, &params);
1462}
1463
1483static inline int bt_gatt_notify_uuid(struct bt_conn *conn,
1484 const struct bt_uuid *uuid,
1485 const struct bt_gatt_attr *attr,
1486 const void *data, uint16_t len)
1487{
1488 struct bt_gatt_notify_params params;
1489
1490 memset(&params, 0, sizeof(params));
1491
1492 params.uuid = uuid;
1493 params.attr = attr;
1494 params.data = data;
1495 params.len = len;
1496#if defined(CONFIG_BT_EATT)
1498#endif /* CONFIG_BT_EATT */
1499
1500 return bt_gatt_notify_cb(conn, &params);
1501}
1502
1503/* Forward declaration of the bt_gatt_indicate_params structure */
1505
1513typedef void (*bt_gatt_indicate_func_t)(struct bt_conn *conn,
1514 struct bt_gatt_indicate_params *params,
1515 uint8_t err);
1516
1526 struct bt_gatt_indicate_params *params);
1527
1539 const struct bt_uuid *uuid;
1545 const struct bt_gatt_attr *attr;
1551 const void *data;
1555 uint8_t _ref;
1556#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
1559#endif /* CONFIG_BT_EATT */
1560};
1561
1587int bt_gatt_indicate(struct bt_conn *conn,
1588 struct bt_gatt_indicate_params *params);
1589
1608bool bt_gatt_is_subscribed(struct bt_conn *conn,
1609 const struct bt_gatt_attr *attr, uint16_t ccc_type);
1610
1620uint16_t bt_gatt_get_mtu(struct bt_conn *conn);
1621
1637uint16_t bt_gatt_get_uatt_mtu(struct bt_conn *conn);
1638
1657 void (*func)(struct bt_conn *conn, uint8_t err,
1658 struct bt_gatt_exchange_params *params);
1659};
1660
1685int bt_gatt_exchange_mtu(struct bt_conn *conn,
1686 struct bt_gatt_exchange_params *params);
1687
1689
1734typedef uint8_t (*bt_gatt_discover_func_t)(struct bt_conn *conn,
1735 const struct bt_gatt_attr *attr,
1736 struct bt_gatt_discover_params *params);
1737
1781
1783#define BT_GATT_AUTO_DISCOVER_CCC_HANDLE 0x0000U
1784
1788 const struct bt_uuid *uuid;
1791 union {
1793 struct {
1800 } _included;
1802 uint16_t start_handle;
1803 };
1808#if defined(CONFIG_BT_GATT_AUTO_DISCOVER_CCC) || defined(__DOXYGEN__)
1811#endif /* defined(CONFIG_BT_GATT_AUTO_DISCOVER_CCC) || defined(__DOXYGEN__) */
1812#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
1815#endif /* CONFIG_BT_EATT */
1816};
1817
1851int bt_gatt_discover(struct bt_conn *conn,
1852 struct bt_gatt_discover_params *params);
1853
1854struct bt_gatt_read_params;
1855
1871typedef uint8_t (*bt_gatt_read_func_t)(struct bt_conn *conn, uint8_t err,
1872 struct bt_gatt_read_params *params,
1873 const void *data, uint16_t length);
1874
1884 union {
1885 struct {
1891 struct {
1908 struct {
1914 const struct bt_uuid *uuid;
1916 };
1917#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
1920#endif /* CONFIG_BT_EATT */
1922 uint16_t _att_mtu;
1923};
1924
1964int bt_gatt_read(struct bt_conn *conn, struct bt_gatt_read_params *params);
1965
1967
1975typedef void (*bt_gatt_write_func_t)(struct bt_conn *conn, uint8_t err,
1976 struct bt_gatt_write_params *params);
1977
1987 const void *data;
1990#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
1993#endif /* CONFIG_BT_EATT */
1994};
1995
2013int bt_gatt_write(struct bt_conn *conn, struct bt_gatt_write_params *params);
2014
2042int bt_gatt_write_without_response_cb(struct bt_conn *conn, uint16_t handle,
2043 const void *data, uint16_t length,
2044 bool sign, bt_gatt_complete_func_t func,
2045 void *user_data);
2046
2065static inline int bt_gatt_write_without_response(struct bt_conn *conn,
2066 uint16_t handle, const void *data,
2067 uint16_t length, bool sign)
2068{
2069 return bt_gatt_write_without_response_cb(conn, handle, data, length,
2070 sign, NULL, NULL);
2071}
2072
2074
2091typedef uint8_t (*bt_gatt_notify_func_t)(struct bt_conn *conn,
2092 struct bt_gatt_subscribe_params *params,
2093 const void *data, uint16_t length);
2094
2102typedef void (*bt_gatt_subscribe_func_t)(struct bt_conn *conn, uint8_t err,
2103 struct bt_gatt_subscribe_params *params);
2104
2155
2164
2169#if defined(CONFIG_BT_GATT_AUTO_DISCOVER_CCC) || defined(__DOXYGEN__)
2174#endif /* defined(CONFIG_BT_GATT_AUTO_DISCOVER_CCC) || defined(__DOXYGEN__) */
2177#if defined(CONFIG_BT_SMP)
2183#endif
2186
2190 sys_snode_t node;
2192#if defined(CONFIG_BT_EATT) || defined(__DOXYGEN__)
2195#endif /* CONFIG_BT_EATT */
2196};
2197
2232int bt_gatt_subscribe(struct bt_conn *conn,
2233 struct bt_gatt_subscribe_params *params);
2234
2252 struct bt_gatt_subscribe_params *params);
2253
2276int bt_gatt_unsubscribe(struct bt_conn *conn,
2277 struct bt_gatt_subscribe_params *params);
2278
2296void bt_gatt_cancel(struct bt_conn *conn, void *params);
2297
2300#ifdef __cplusplus
2301}
2302#endif
2303
2308#endif /* ZEPHYR_INCLUDE_BLUETOOTH_GATT_H_ */
Attribute Protocol handling.
Bluetooth connection handling.
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:111
bt_att_chan_opt
ATT channel option bit field values.
Definition att.h:171
static const char * bt_att_err_to_str(uint8_t att_err)
Converts a ATT error to string.
Definition att.h:121
@ BT_ATT_CHAN_OPT_NONE
Both Enhanced and Unenhanced channels can be used
Definition att.h:173
bt_security_t
Security level.
Definition conn.h:810
int bt_gatt_exchange_mtu(struct bt_conn *conn, struct bt_gatt_exchange_params *params)
Exchange MTU.
int bt_gatt_read(struct bt_conn *conn, struct bt_gatt_read_params *params)
Read Attribute Value by handle.
uint8_t(* bt_gatt_discover_func_t)(struct bt_conn *conn, const struct bt_gatt_attr *attr, struct bt_gatt_discover_params *params)
Discover attribute callback function.
Definition gatt.h:1734
void(* bt_gatt_subscribe_func_t)(struct bt_conn *conn, uint8_t err, struct bt_gatt_subscribe_params *params)
Subscription callback function.
Definition gatt.h:2102
int bt_gatt_write_without_response_cb(struct bt_conn *conn, uint16_t handle, const void *data, uint16_t length, bool sign, bt_gatt_complete_func_t func, void *user_data)
Write Attribute Value by handle without response with callback.
void bt_gatt_cancel(struct bt_conn *conn, void *params)
Try to cancel the first pending request identified by params.
int bt_gatt_unsubscribe(struct bt_conn *conn, struct bt_gatt_subscribe_params *params)
Unsubscribe Attribute Value Notification.
uint8_t(* bt_gatt_read_func_t)(struct bt_conn *conn, uint8_t err, struct bt_gatt_read_params *params, const void *data, uint16_t length)
Read callback function.
Definition gatt.h:1871
int bt_gatt_resubscribe(uint8_t id, const bt_addr_le_t *peer, struct bt_gatt_subscribe_params *params)
Resubscribe Attribute Value Notification subscription.
int bt_gatt_subscribe(struct bt_conn *conn, struct bt_gatt_subscribe_params *params)
Subscribe Attribute Value Notification.
int bt_gatt_write(struct bt_conn *conn, struct bt_gatt_write_params *params)
Write Attribute Value by handle.
static int bt_gatt_write_without_response(struct bt_conn *conn, uint16_t handle, const void *data, uint16_t length, bool sign)
Write Attribute Value by handle without response.
Definition gatt.h:2065
bt_gatt_sub_flag
Subscription flags.
Definition gatt.h:2106
int bt_gatt_discover(struct bt_conn *conn, struct bt_gatt_discover_params *params)
GATT Discover function.
uint8_t(* bt_gatt_notify_func_t)(struct bt_conn *conn, struct bt_gatt_subscribe_params *params, const void *data, uint16_t length)
Notification callback function.
Definition gatt.h:2091
bt_gatt_discover_type
GATT Discover types.
Definition gatt.h:1739
void(* bt_gatt_write_func_t)(struct bt_conn *conn, uint8_t err, struct bt_gatt_write_params *params)
Write callback function.
Definition gatt.h:1975
@ BT_GATT_SUBSCRIBE_FLAG_NO_RESUB
No resubscribe flag.
Definition gatt.h:2130
@ BT_GATT_SUBSCRIBE_NUM_FLAGS
Definition gatt.h:2153
@ BT_GATT_SUBSCRIBE_FLAG_SENT
Sent flag.
Definition gatt.h:2151
@ BT_GATT_SUBSCRIBE_FLAG_VOLATILE
Persistence flag.
Definition gatt.h:2116
@ BT_GATT_SUBSCRIBE_FLAG_WRITE_PENDING
Write pending flag.
Definition gatt.h:2139
@ BT_GATT_DISCOVER_DESCRIPTOR
Discover Descriptors.
Definition gatt.h:1759
@ BT_GATT_DISCOVER_SECONDARY
Discover Secondary Services.
Definition gatt.h:1743
@ BT_GATT_DISCOVER_CHARACTERISTIC
Discover Characteristic Values.
Definition gatt.h:1750
@ BT_GATT_DISCOVER_INCLUDE
Discover Included Services.
Definition gatt.h:1745
@ BT_GATT_DISCOVER_STD_CHAR_DESC
Discover standard characteristic descriptor values.
Definition gatt.h:1779
@ BT_GATT_DISCOVER_PRIMARY
Discover Primary Services.
Definition gatt.h:1741
@ BT_GATT_DISCOVER_ATTRIBUTE
Discover Attributes.
Definition gatt.h:1768
void(* bt_gatt_indicate_params_destroy_t)(struct bt_gatt_indicate_params *params)
Callback to destroy or clean up the GATT Indicate Value parameters.
Definition gatt.h:1525
void(* bt_gatt_indicate_func_t)(struct bt_conn *conn, struct bt_gatt_indicate_params *params, uint8_t err)
Indication complete result callback.
Definition gatt.h:1513
static int bt_gatt_notify_uuid(struct bt_conn *conn, const struct bt_uuid *uuid, const struct bt_gatt_attr *attr, const void *data, uint16_t len)
Notify attribute value change by UUID.
Definition gatt.h:1483
void bt_gatt_cb_register(struct bt_gatt_cb *cb)
Register GATT callbacks.
ssize_t bt_gatt_attr_read_cud(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Characteristic User Description Descriptor Attribute helper.
uint16_t bt_gatt_attr_get_handle(const struct bt_gatt_attr *attr)
Get Attribute handle.
ssize_t bt_gatt_attr_read_ccc(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Client Characteristic Configuration Attribute helper.
uint16_t bt_gatt_get_mtu(struct bt_conn *conn)
Get ATT MTU for a connection.
struct bt_gatt_attr * bt_gatt_attr_next(const struct bt_gatt_attr *attr)
Iterate to the next attribute.
ssize_t bt_gatt_attr_read_included(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Include Attribute helper.
int bt_gatt_indicate(struct bt_conn *conn, struct bt_gatt_indicate_params *params)
Indicate attribute value change.
int bt_gatt_notify_cb(struct bt_conn *conn, struct bt_gatt_notify_params *params)
Notify attribute value change.
ssize_t bt_gatt_attr_read_cep(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Characteristic Extended Properties Attribute helper.
ssize_t bt_gatt_attr_read_cpf(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Characteristic Presentation format Descriptor Attribute helper.
int bt_gatt_authorization_cb_register(const struct bt_gatt_authorization_cb *cb)
Register GATT authorization callbacks.
uint16_t bt_gatt_get_uatt_mtu(struct bt_conn *conn)
Get Unenhanced ATT (UATT) MTU for a connection.
static int bt_gatt_notify(struct bt_conn *conn, const struct bt_gatt_attr *attr, const void *data, uint16_t len)
Notify attribute value change.
Definition gatt.h:1446
int bt_gatt_notify_multiple(struct bt_conn *conn, uint16_t num_params, struct bt_gatt_notify_params params[])
Send multiple notifications in a single PDU.
uint16_t bt_gatt_attr_value_handle(const struct bt_gatt_attr *attr)
Get the handle of the characteristic value descriptor.
static void bt_gatt_foreach_attr(uint16_t start_handle, uint16_t end_handle, bt_gatt_attr_func_t func, void *user_data)
Attribute iterator.
Definition gatt.h:738
int bt_gatt_service_register(struct bt_gatt_service *svc)
Register GATT service.
ssize_t bt_gatt_attr_write_ccc(struct bt_conn *conn, const struct bt_gatt_attr *attr, const void *buf, uint16_t len, uint16_t offset, uint8_t flags)
Write Client Characteristic Configuration Attribute helper.
bool bt_gatt_is_subscribed(struct bt_conn *conn, const struct bt_gatt_attr *attr, uint16_t ccc_type)
Check if connection have subscribed to attribute.
#define BT_GATT_CCC_MAX
BT_GATT_CCC_MAX is defined depending on whether.
Definition gatt.h:1022
void(* bt_gatt_complete_func_t)(struct bt_conn *conn, void *user_data)
Notification complete result callback.
Definition gatt.h:1315
ssize_t bt_gatt_attr_read_service(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Service Attribute helper.
struct bt_gatt_attr * bt_gatt_find_by_uuid(const struct bt_gatt_attr *attr, uint16_t attr_count, const struct bt_uuid *uuid)
Find Attribute by UUID.
ssize_t bt_gatt_attr_read_chrc(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Read Characteristic Attribute helper.
void bt_gatt_foreach_attr_type(uint16_t start_handle, uint16_t end_handle, const struct bt_uuid *uuid, const void *attr_data, uint16_t num_matches, bt_gatt_attr_func_t func, void *user_data)
Attribute iterator by type.
bool bt_gatt_service_is_registered(const struct bt_gatt_service *svc)
Check if GATT service is registered.
uint8_t(* bt_gatt_attr_func_t)(const struct bt_gatt_attr *attr, uint16_t handle, void *user_data)
Attribute iterator callback.
Definition gatt.h:706
int bt_gatt_service_unregister(struct bt_gatt_service *svc)
Unregister GATT service.
ssize_t 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)
Generic Read Attribute value helper.
static const char * bt_gatt_err_to_str(int gatt_err)
Converts a GATT error to string.
Definition gatt.h:610
@ BT_GATT_ITER_STOP
Definition gatt.h:692
@ BT_GATT_ITER_CONTINUE
Definition gatt.h:693
ssize_t(* bt_gatt_attr_read_func_t)(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, uint16_t len, uint16_t offset)
Attribute read callback.
Definition gatt.h:163
ssize_t(* bt_gatt_attr_write_func_t)(struct bt_conn *conn, const struct bt_gatt_attr *attr, const void *buf, uint16_t len, uint16_t offset, uint8_t flags)
Attribute Value write implementation.
Definition gatt.h:206
bt_gatt_attr_write_flag
GATT attribute write flags.
Definition gatt.h:106
bt_gatt_perm
GATT attribute permission bit field values.
Definition gatt.h:40
@ BT_GATT_WRITE_FLAG_PREPARE
Attribute prepare write flag.
Definition gatt.h:112
@ BT_GATT_WRITE_FLAG_CMD
Attribute write command flag.
Definition gatt.h:119
@ BT_GATT_WRITE_FLAG_EXECUTE
Attribute write execute flag.
Definition gatt.h:127
@ BT_GATT_PERM_READ_ENCRYPT
Attribute read permission with encryption.
Definition gatt.h:54
@ BT_GATT_PERM_WRITE
Attribute write permission.
Definition gatt.h:48
@ BT_GATT_PERM_WRITE_ENCRYPT
Attribute write permission with encryption.
Definition gatt.h:60
@ BT_GATT_PERM_NONE
No operations supported, e.g.
Definition gatt.h:42
@ BT_GATT_PERM_READ
Attribute read permission.
Definition gatt.h:45
@ BT_GATT_PERM_PREPARE_WRITE
Attribute prepare write permission.
Definition gatt.h:81
@ BT_GATT_PERM_WRITE_LESC
Attribute write permission with LE Secure Connection encryption.
Definition gatt.h:93
@ BT_GATT_PERM_READ_AUTHEN
Attribute read permission with authentication.
Definition gatt.h:67
@ BT_GATT_PERM_WRITE_AUTHEN
Attribute write permission with authentication.
Definition gatt.h:74
@ BT_GATT_PERM_READ_LESC
Attribute read permission with LE Secure Connection encryption.
Definition gatt.h:87
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define BIT(n)
Unsigned integer with bit position n set (signed in assembly language).
Definition util_macro.h:44
#define NULL
Definition iar_missing_defs.h:20
__SIZE_TYPE__ ssize_t
Definition types.h:28
flags
Definition parser.h:97
#define bool
Definition stdbool.h:13
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
__INT8_TYPE__ int8_t
Definition stdint.h:72
void * memset(void *buf, int c, size_t n)
Bluetooth LE Device Address.
Definition addr.h:49
GATT Attribute.
Definition gatt.h:227
bt_gatt_attr_read_func_t read
Attribute Value read method.
Definition gatt.h:253
uint16_t perm
Attribute Permissions.
Definition gatt.h:298
bt_gatt_attr_write_func_t write
Attribute Value write method.
Definition gatt.h:266
const struct bt_uuid * uuid
Attribute Type.
Definition gatt.h:240
void * user_data
Private data for read() and write() implementation.
Definition gatt.h:279
uint16_t handle
Attribute Handle.
Definition gatt.h:289
GATT authorization callback structure.
Definition gatt.h:391
bool(* read_authorize)(struct bt_conn *conn, const struct bt_gatt_attr *attr)
Authorize the GATT read operation.
Definition gatt.h:403
bool(* write_authorize)(struct bt_conn *conn, const struct bt_gatt_attr *attr)
Authorize the GATT write operation.
Definition gatt.h:417
GATT callback structure.
Definition gatt.h:371
void(* att_mtu_updated)(struct bt_conn *conn, uint16_t tx, uint16_t rx)
The maximum ATT MTU on a connection has changed.
Definition gatt.h:381
GATT CCC configuration entry.
Definition gatt.h:1031
uint16_t value
Configuration value Value used to enable or disable notifications or indications for a specific chara...
Definition gatt.h:1040
bt_addr_le_t peer
Remote peer address.
Definition gatt.h:1035
uint8_t id
Local identity, BT_ID_DEFAULT in most cases.
Definition gatt.h:1033
Client Characteristic Configuration Attribute Value.
Definition gatt.h:524
uint16_t flags
Client Characteristic Configuration flags, a bitmap of BT_GATT_CCC_* macros.
Definition gatt.h:526
Characteristic Extended Properties Attribute Value.
Definition gatt.h:500
uint16_t properties
Characteristic Extended properties, a bitmap of BT_GATT_CEP_* macros.
Definition gatt.h:502
Attribute Value of a Characteristic Declaration.
Definition gatt.h:480
uint16_t value_handle
Characteristic Value handle.
Definition gatt.h:484
uint8_t properties
Characteristic properties, a bitmap of BT_GATT_CHRC_* macros.
Definition gatt.h:486
const struct bt_uuid * uuid
Characteristic UUID.
Definition gatt.h:482
GATT Characteristic Presentation Format Attribute Value.
Definition gatt.h:553
uint8_t name_space
Name space of the description.
Definition gatt.h:578
uint16_t unit
UUID of the unit of the characteristic.
Definition gatt.h:571
int8_t exponent
Exponent field for value formatting.
Definition gatt.h:565
uint16_t description
Description of the characteristic as defined in a higher layer profile.
Definition gatt.h:585
uint8_t format
Format of the value of the characteristic.
Definition gatt.h:559
GATT Discover Attributes parameters.
Definition gatt.h:1786
uint16_t start_handle
Included service start handle.
Definition gatt.h:1797
uint16_t end_handle
Included service end handle.
Definition gatt.h:1799
bt_gatt_discover_func_t func
Discover attribute callback.
Definition gatt.h:1790
uint16_t attr_handle
Include service attribute declaration handle.
Definition gatt.h:1795
const struct bt_uuid * uuid
Discover UUID type.
Definition gatt.h:1788
struct bt_gatt_subscribe_params * sub_params
Only for stack-internal use, used for automatic discovery.
Definition gatt.h:1810
uint8_t type
Discover type.
Definition gatt.h:1807
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:1814
GATT Exchange MTU parameters.
Definition gatt.h:1655
void(* func)(struct bt_conn *conn, uint8_t err, struct bt_gatt_exchange_params *params)
Callback for MTU exchange response.
Definition gatt.h:1657
Include Attribute Value.
Definition gatt.h:361
uint16_t end_handle
Handle of the last attribute within the included service.
Definition gatt.h:367
uint16_t start_handle
Handle of the first attribute within the included service.
Definition gatt.h:365
const struct bt_uuid * uuid
Service UUID.
Definition gatt.h:363
GATT Indicate Value parameters.
Definition gatt.h:1533
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:1558
uint16_t len
Indicate Value length.
Definition gatt.h:1553
const struct bt_gatt_attr * attr
Indicate Attribute object.
Definition gatt.h:1545
const void * data
Indicate Value data.
Definition gatt.h:1551
bt_gatt_indicate_params_destroy_t destroy
Indicate operation complete callback.
Definition gatt.h:1549
bt_gatt_indicate_func_t func
Indicate Value callback.
Definition gatt.h:1547
const struct bt_uuid * uuid
Indicate Attribute UUID type.
Definition gatt.h:1539
GATT notification parameters.
Definition gatt.h:1321
const struct bt_uuid * uuid
Notification Attribute UUID type.
Definition gatt.h:1327
uint16_t len
Notification Value length.
Definition gatt.h:1337
const struct bt_gatt_attr * attr
Notification Attribute object.
Definition gatt.h:1333
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:1344
bt_gatt_complete_func_t func
Notification Value callback.
Definition gatt.h:1339
void * user_data
Notification Value callback user data.
Definition gatt.h:1341
const void * data
Notification Value data.
Definition gatt.h:1335
GATT Read parameters.
Definition gatt.h:1876
size_t handle_count
If equals to 1 single.handle and single.offset are used.
Definition gatt.h:1883
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:1919
uint16_t * handles
Attribute handles to read with Read Multiple Characteristic Values.
Definition gatt.h:1895
uint16_t offset
Attribute data offset.
Definition gatt.h:1889
bt_gatt_read_func_t func
Read attribute callback.
Definition gatt.h:1878
struct bt_gatt_read_params::@125::@127 single
bool variable
If true use Read Multiple Variable Length Characteristic Values procedure.
Definition gatt.h:1906
uint16_t end_handle
Attribute handle to stop reading at.
Definition gatt.h:1912
struct bt_gatt_read_params::@125::@128 multiple
struct bt_gatt_read_params::@125::@129 by_uuid
uint16_t start_handle
Attribute handle to start reading from.
Definition gatt.h:1910
const struct bt_uuid * uuid
2 or 16 octet UUID.
Definition gatt.h:1914
uint16_t handle
Attribute handle.
Definition gatt.h:1887
Server Characteristic Configuration Attribute Value.
Definition gatt.h:543
uint16_t flags
Server Characteristic Configuration flags, a bitmap of BT_GATT_SCC_* macros.
Definition gatt.h:545
Static GATT Service structure.
Definition gatt.h:318
const struct bt_gatt_attr * attrs
Service Attributes.
Definition gatt.h:320
size_t attr_count
Service Attribute count.
Definition gatt.h:322
Service Attribute Value.
Definition gatt.h:348
const struct bt_uuid * uuid
Service UUID.
Definition gatt.h:350
uint16_t end_handle
Handle of the last Attribute within the Service.
Definition gatt.h:352
GATT Service structure.
Definition gatt.h:331
struct bt_gatt_attr * attrs
Service Attributes.
Definition gatt.h:333
size_t attr_count
Service Attribute count.
Definition gatt.h:335
GATT Subscribe parameters.
Definition gatt.h:2157
uint16_t value
Subscribe value.
Definition gatt.h:2176
bt_security_t min_security
Minimum required security for received notification.
Definition gatt.h:2182
uint16_t ccc_handle
Subscribe CCC handle.
Definition gatt.h:2168
bt_gatt_subscribe_func_t subscribe
Subscribe CCC write request response callback If given, called with the subscription parameters given...
Definition gatt.h:2163
uint16_t value_handle
Subscribe value handle.
Definition gatt.h:2166
bt_gatt_notify_func_t notify
Notification value callback.
Definition gatt.h:2159
struct bt_gatt_discover_params * disc_params
Discover parameters used when ccc_handle = BT_GATT_AUTO_DISCOVER_CCC_HANDLE.
Definition gatt.h:2173
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:2194
uint16_t end_handle
Subscribe End handle (for automatic discovery)
Definition gatt.h:2171
GATT Write parameters.
Definition gatt.h:1979
bt_gatt_write_func_t func
Response callback.
Definition gatt.h:1981
uint16_t handle
Attribute handle.
Definition gatt.h:1983
const void * data
Data to be written.
Definition gatt.h:1987
enum bt_att_chan_opt chan_opt
Att channel options.
Definition gatt.h:1992
uint16_t offset
Attribute data offset.
Definition gatt.h:1985
uint16_t length
Length of the data.
Definition gatt.h:1989
This is a 'tentative' type and should be used as a pointer only.
Definition uuid.h:49
Misc utilities.
Bluetooth UUID handling.