Commit f7aafc06 authored by Jim Mussared's avatar Jim Mussared Committed by Damien George

extmod/nimble: Don't assert on save-IRK failure.

parent f42a1902
......@@ -227,7 +227,9 @@ STATIC int load_irk(void) {
}
DEBUG_printf("load_irk: Saving new IRK.\n");
if (!mp_bluetooth_gap_on_set_secret(SECRET_TYPE_OUR_IRK, key, sizeof(key), rand_irk, 16)) {
return BLE_HS_EINVAL;
// Code that doesn't implement pairing/bonding won't support set/get secret.
// So they'll just get the default fixed IRK.
return 0;
}
DEBUG_printf("load_irk: Applying new IRK.\n");
rc = ble_hs_pvcy_set_our_irk(rand_irk);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment