GATT Characteristic Property Flags#

This enum defines the property flags for GATT characteristic values. Lower byte is Characteristic Properties and higher byte is Characteristic Extended Properties.

Macros#

#define

A GATT client can read the characteristic value.

#define

A GATT client can write the characteristic value without a response.

#define

A GATT client can write the characteristic value.

#define

The characteristic value can be notified without acknowledgment.

#define

The characteristic value can be notified with acknowledgment.

#define

The additional characteristic properties are defined.

#define

The characteristic value supports reliable write.

Macro Definition Documentation#

SL_BT_GATTDB_CHARACTERISTIC_READ#

#define SL_BT_GATTDB_CHARACTERISTIC_READ
Value:
0x2

A GATT client can read the characteristic value.


SL_BT_GATTDB_CHARACTERISTIC_WRITE_NO_RESPONSE#

#define SL_BT_GATTDB_CHARACTERISTIC_WRITE_NO_RESPONSE
Value:
0x4

A GATT client can write the characteristic value without a response.


SL_BT_GATTDB_CHARACTERISTIC_WRITE#

#define SL_BT_GATTDB_CHARACTERISTIC_WRITE
Value:
0x8

A GATT client can write the characteristic value.


SL_BT_GATTDB_CHARACTERISTIC_NOTIFY#

#define SL_BT_GATTDB_CHARACTERISTIC_NOTIFY
Value:
0x10

The characteristic value can be notified without acknowledgment.


SL_BT_GATTDB_CHARACTERISTIC_INDICATE#

#define SL_BT_GATTDB_CHARACTERISTIC_INDICATE
Value:
0x20

The characteristic value can be notified with acknowledgment.


SL_BT_GATTDB_CHARACTERISTIC_EXTENDED_PROPS#

#define SL_BT_GATTDB_CHARACTERISTIC_EXTENDED_PROPS
Value:
0x80

The additional characteristic properties are defined.


SL_BT_GATTDB_CHARACTERISTIC_RELIABLE_WRITE#

#define SL_BT_GATTDB_CHARACTERISTIC_RELIABLE_WRITE
Value:
0x101

The characteristic value supports reliable write.