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

PASSKEY

 I’ve downloaded     nRF5_SDK_11.0.0_89a8197 and starting with examples from \examples\ble_peripheral\???\pca10040\s132\arm5_no_packs\

 I would like the other device to request a passkey (constant) at pairing (the passkey on my side is constant - no display needed)

After   gap_params_init();I’ve added the following code:

 

{

 static ble_opt_t optS;

   static uint8_t passw[]="123456";           

 optS.gap_opt.passkey.p_passkey=passw;

   err_code =sd_ble_opt_set(BLE_GAP_OPT_PASSKEY, &optS);

}

 

err_code returned :  0  

 

Still the module will pair and communicate without requesting a passkey.

I've tried to find an answer in Q&A . in some answers there was a reference to fields : io_caps,mitm. cant make out what does it mean. 

(these fields belong to structs relevant to services, not pairing)

 

Thanks for any help

   Yona

Parents Reply
  • Your original post was this:

    me again, new issue 

    now that a peripheral BLE is working (including the passkey), I'm requested to develop a tester for that unit.

    For that I need A BLE central .

    so I started with nRF5_SDK_11.0.0_89a8197\examples\ble_central\ble_app_multilink_central .

    all is fine.the only issue is again: how to operate the passkey (as a central unit)

    thanks

    Yona

    So first question are you still using the ble_app_multilink_central as the central example for your tester? If yes, have you set the IO capabilities in this example as BLE_GAP_IO_CAPS_KEYBOARD_ONLY or BLE_GAP_IO_CAPS_KEYBOARD_DISPLAY? 

Children
Related