Characteristic properties

C

#define ATT_PROP_BROADCAST                                  (0x01U)
#define ATT_PROP_READ                                       (0x02U)
#define ATT_PROP_WRITE_CMD                                  (0x04U)
#define ATT_PROP_WRITE_REQ                                  (0x08U)
#define ATT_PROP_NOTIFY                                     (0x10U)
#define ATT_PROP_INDICATE                                   (0x20U)
#define ATT_PROP_AUTH_WRITES                                (0x40U)
#define ATT_PROP_EXTENDED_PROP                              (0x80U)

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.