BLE_DD_Config_T

C

typedef struct BLE_DD_Config_T
{
    unsigned int                 waitForSecurity:1;
    unsigned int                 initDiscInCentral:1;
    unsigned int                 initDiscInPeripheral:1;
    unsigned int                 disableConnectedDisc:1;
    unsigned int                 reserved:4;
} BLE_DD_Config_T;

Description

Structure for configuring parameters for BLE device discovery.

Field Documentation

FieldDescription
waitForSecuritySpecifies whether security is required before initiating database discovery. Set to 1 to enable.
initDiscInCentralEnables discovery when the GAP role of the connection is central. Set to 1 to enable.
initDiscInPeripheralEnables discovery when the GAP role of the connection is peripheral. Set to 1 to enable.
disableConnectedDiscDisables the discovery process once a connection is established. This may be optional for bonded links. Note: This is a one-time setting. Disable unnecessary discovery for each connected instance.
reservedReserved bits for future use.