[][src]Struct nrf_softdevice_s122::ble_gap_qos_rssi_t

#[repr(C)]pub struct ble_gap_qos_rssi_t {
    pub conn_handle: u16,
    pub threshold_dbm: u8,
    pub skip_count: u8,
}

@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

impl Clone for ble_gap_qos_rssi_t[src]

impl Copy for ble_gap_qos_rssi_t[src]

impl Debug for ble_gap_qos_rssi_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.