Hi,
We implement oob pairing using NFC.
According to my knowledge NFC is used as "private" advertising channel (this is what OOB means) i.e. peripheral address, encryption initial keys etc. are transmitted via NFC instead of broadcasting them via 2.4GHz (BLE).
The central device extracts peripheral address from NFC message ("tag") according to NDEF format and sends connection request.
I reviewed ble_nfc_pairing_reference example code from SDK 15.2.
In nfc_callback function (file: nfc_ble_pir_lib.c) if NFC_T2T_EVENT_FIELD_ON event is detected it calls ble_advertising_start (line 184)
What do I miss?
Thanks in advance