#[repr(C)]pub struct ble_gap_conn_params_t {
pub min_conn_interval: u16,
pub max_conn_interval: u16,
pub slave_latency: u16,
pub conn_sup_timeout: u16,
}
Expand description
@brief GAP connection parameters.
@note When ble_conn_params_t is received in an event, both min_conn_interval and max_conn_interval will be equal to the connection interval set by the central.
@note If both @ref conn_sup_timeout and @ref max_conn_interval are specified, then the following constraint applies: The @ref conn_sup_timeout converted to milliseconds shall be larger than (1 + @ref slave_latency) * max_conn_interval_ms * 2 where max_conn_interval_ms is @ref max_conn_interval converted to milliseconds.
Fields§
§min_conn_interval: u16
< Minimum Connection Interval, see @ref BLE_GAP_CONN_INTVL_UNITS.
max_conn_interval: u16
< Maximum Connection Interval, see @ref BLE_GAP_CONN_INTVL_UNITS.
slave_latency: u16
< Slave Latency in number of connection events, see @ref BLE_GAP_CP_LIMITS.
conn_sup_timeout: u16
< Connection Supervision Timeout, see @ref BLE_GAP_CP_LIMITS for range and unit size.
Trait Implementations§
source§impl Clone for ble_gap_conn_params_t
impl Clone for ble_gap_conn_params_t
source§fn clone(&self) -> ble_gap_conn_params_t
fn clone(&self) -> ble_gap_conn_params_t
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more