Hi.
I scan devices with sd_ble_gap_scan_start command and on start it consumes around 6mA.
here are my parameters:
#define SCAN_INTERVAL 0x00A0 /**< Determines scan interval in units of 0.625 millisecond. */
#define SCAN_WINDOW 0x0050 /**< Determines scan window in units of 0.625 millisecond. */
#define SCAN_TIMEOUT 0
ble_gap_scan_params_t const m_scan_params =
{
.active = 1,
.use_whitelist = 0,
.adv_dir_report = 0,
.interval = SCAN_INTERVAL,
.window = SCAN_WINDOW,
.timeout = SCAN_TIMEOUT,
};
Is this normal?