NCS v2.9.0
nRF52832 DK
peripheral_uart sample
"Online Power Profiler for Bluetooth LE"
Online Power Profiler for Bluetooth LE
has a BLE role to send non-connectable, non-scannable packet,
I want to send this kind of advertising packet to test current consumption,
err = bt_le_adv_start(BT_LE_ADV_NCONN, ad, ARRAY_SIZE(ad), sd, ARRAY_SIZE(sd)); if (err) { LOG_ERR("Advertising failed to start (err %d)", err); return 0; }
use BT_LE_ADV_NCONN parameter send ADV_SCAN_IND type advertising,
it seems wrong, which parameter of
is correct for non-connectable, non-scannable advertising packet?