bt_gatt_conn_parm_t

Structure to represent the connection parameters for a low energy (LE) link.

Synopsis:

typedef struct  {
    uint16_t minConn ;
    uint16_t maxConn ;
    uint16_t latency ;
    uint16_t superTimeout ;
}bt_gatt_conn_parm_t;

Since:

BlackBerry 10.0.0

Data:

uint16_t minConn
Minimum value for the connection interval.
  • Range: 0x0006 to 0x0C80
  • Time = N * 1.25 msec
  • Time Range: 7.5 msec to 4 seconds
uint16_t maxConn
Maximum value for the connection interval.
  • Range: 0x0006 to 0x0C80
  • Time = N * 1.25 msec
  • Time Range: 7.5 msec to 4 seconds
uint16_t latency
Slave latency for the connection.
  • Range: 0x0000 to 0x01F4
uint16_t superTimeout
Supervision timeout for the LE Link, value must satisfy the following condition: (superTimout > (1 + latency ) * maxConn)
  • Range: 0x000A to 0x0C80
  • Time = N * 10 msec
  • Time Range: 100 msec to 32 seconds

Library:

libbtapi (For the qcc command, use the -l btapi option to link against this library)

Description: