Structure to represent the update 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_srv_update_parm_t;
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.
-
- 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: