Struct nrf_softdevice_s122::ble_gap_qos_rssi_t
source · #[repr(C)]pub struct ble_gap_qos_rssi_t {
pub conn_handle: u16,
pub threshold_dbm: u8,
pub skip_count: u8,
}
Expand description
@brief Quality of Service (QoS) reporting changes in RSSI.
@details This can be used with @ref sd_ble_gap_qos_start and @ref sd_ble_gap_qos_stop to start and stop reporting of changes in RSSI.
@note An RSSI change detected before the call but not yet received by the application may be reported after @ref sd_ble_gap_qos_stop has been called.
@events @event{@ref BLE_GAP_EVT_RSSI_CHANGED, New RSSI data available. How often the event is generated is dependent on the settings of @ref ble_gap_qos_rssi_t::threshold_dbm and @ref ble_gap_qos_rssi_t::skip_count input parameters.} @endevents
@mscs @mmsc{@ref BLE_GAP_CENTRAL_RSSI_READ_MSC} @mmsc{@ref BLE_GAP_RSSI_FILT_MSC} @endmscs
@retval ::BLE_ERROR_INVALID_CONN_HANDLE Invalid connection handle supplied.
Fields§
§conn_handle: u16
< Connection handle.
threshold_dbm: u8
< Minimum change in dBm before triggering the @ref BLE_GAP_EVT_RSSI_CHANGED event. Events are disabled if threshold_dbm equals @ref BLE_GAP_RSSI_THRESHOLD_INVALID. Ignored when used with @ref sd_ble_gap_qos_stop.
skip_count: u8
< Number of RSSI samples with a change of threshold_dbm or more before sending a new @ref BLE_GAP_EVT_RSSI_CHANGED event. Ignored when used with @ref sd_ble_gap_qos_stop.
Trait Implementations§
source§impl Clone for ble_gap_qos_rssi_t
impl Clone for ble_gap_qos_rssi_t
source§fn clone(&self) -> ble_gap_qos_rssi_t
fn clone(&self) -> ble_gap_qos_rssi_t
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more