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

MacroDescription
ATT_PROP_BROADCASTIf set, broadcasting of the Characteristic Value is permitted using the Server Characteristic Configuration Descriptor.
ATT_PROP_READIf set, reading the Characteristic Value is permitted.
ATT_PROP_WRITE_CMDIf set, writing the Characteristic Value without response is permitted.
ATT_PROP_WRITE_REQIf set, writing the Characteristic Value with response is permitted.
ATT_PROP_NOTIFYIf set, notifying the Characteristic Value without acknowledgement is permitted.
ATT_PROP_INDICATEIf set, indicating the Characteristic Value with acknowledgement is permitted.
ATT_PROP_AUTH_WRITESIf set, signed writes to the Characteristic Value are permitted.
ATT_PROP_EXTENDED_PROPIf set, additional properties are defined in the Characteristic Extended Properties Descriptor.