This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Enabling/disabling LE Ping

Hi

We have been able to set LE authenticated payload timeout via the following functions:-

ble_opt_t opt = {0};

opt.gap_opt.auth_payload_timeout.conn_handle = ValidHandle;
opt.gap_opt.auth_payload_timeout.auth_payload_timeout = 20;


retVal = sd_ble_opt_set(BLE_GAP_OPT_AUTH_PAYLOAD_TIMEOUT, &opt)

This successfully starts a timer which can cause the BLE_GAP_EVT_TIMEOUT event to be triggered if the timer expires without receiving a packet with a valid MIC. However, is there a way to disable this timer?

We are using nrf52 with softdevice S132 v3.0.0

Thanks

Related