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
  • ever so sorry- still fail to receive the event  BLE_GAP_EVT_AUTH_KEY_REQUEST anywhere

    I'm using the project ble_app_hrs (nRF5_SDK_11.0.0_89a8197)

    some of the code:

    #define SEC_PARAM_BOND 1
    #define SEC_PARAM_MITM 1
    #define SEC_PARAM_IO_CAPABILITIES BLE_GAP_IO_CAPS_KEYBOARD_DISPLAY // 
    #define SEC_PARAM_OOB 0
    #define SEC_PARAM_MIN_KEY_SIZE 7
    #define SEC_PARAM_MAX_KEY_SIZE 16
    #define SEC_PARAM_LESC 0 /**< LE Secure Connections not enabled. */
    #define SEC_PARAM_KEYPRESS 0 /**< Keypress notifications not enabled. */

    the function dealing with these defines is   device_manager_init()

    after it filles the params- it calls dm_register()

    can you please guide me to what I'm doing wrong?

    thanks again

    Yona 

Children
Related