Characteristic properties
C
#define ATT_PROP_BROADCAST 0x01 #define ATT_PROP_READ 0x02 #define ATT_PROP_WRITE_CMD 0x04 #define ATT_PROP_WRITE_REQ 0x08 #define ATT_PROP_NOTIFY 0x10 #define ATT_PROP_INDICATE 0x20 #define ATT_PROP_AUTH_WRITES 0x40 #define ATT_PROP_EXTENDED_PROP 0x80
Description
Defines properties in Characteristic declarations.
Macro Definition
Macro | Description |
---|---|
ATT_PROP_BROADCAST | If set, broadcasting of the Characteristic Value is permitted using the Server Characteristic Configuration Descriptor. |
ATT_PROP_READ | If set, reading the Characteristic Value is permitted. |
ATT_PROP_WRITE_CMD | If set, writing the Characteristic Value without response is permitted. |
ATT_PROP_WRITE_REQ | If set, writing the Characteristic Value with response is permitted. |
ATT_PROP_NOTIFY | If set, notifying the Characteristic Value without acknowledgement is permitted. |
ATT_PROP_INDICATE | If set, indicating the Characteristic Value with acknowledgement is permitted. |
ATT_PROP_AUTH_WRITES | If set, signed writes to the Characteristic Value are permitted. |
ATT_PROP_EXTENDED_PROP | If set, additional properties are defined in the Characteristic Extended Properties Descriptor. |