#[repr(C)]pub struct bt_le_scan_param {
pub type_: u8,
pub options: u8,
pub interval: u16,
pub window: u16,
pub timeout: u16,
pub interval_coded: u16,
pub window_coded: u16,
}
Expand description
LE scan parameters
Fields§
§type_: u8
Scan type (BT_LE_SCAN_TYPE_ACTIVE or BT_LE_SCAN_TYPE_PASSIVE)
options: u8
Bit-field of scanning options.
interval: u16
Scan interval (N * 0.625 ms).
@note When @kconfig{CONFIG_BT_SCAN_AND_INITIATE_IN_PARALLEL} is enabled and the application wants to scan and connect in parallel, the Bluetooth Controller may require the scan interval used for scanning and connection establishment to be equal to obtain the best performance.
window: u16
Scan window (N * 0.625 ms)
@note When @kconfig{CONFIG_BT_SCAN_AND_INITIATE_IN_PARALLEL} is enabled and the application wants to scan and connect in parallel, the Bluetooth Controller may require the scan window used for scanning and connection establishment to be equal to obtain the best performance.
timeout: u16
@brief Scan timeout (N * 10 ms)
Application will be notified by the scan timeout callback. Set zero to disable timeout.
interval_coded: u16
@brief Scan interval LE Coded PHY (N * 0.625 MS)
Set zero to use same as LE 1M PHY scan interval.
window_coded: u16
@brief Scan window LE Coded PHY (N * 0.625 MS)
Set zero to use same as LE 1M PHY scan window.