Skip to content
Snippets Groups Projects
Commit 9ae70996 authored by schneider's avatar schneider
Browse files

fix(ble): Stay bondable even after a pairing happened

Mainly to ease development ATM
parent 1cd09e2b
No related branches found
No related tags found
1 merge request!385BLE fixes 2020-2
Pipeline #4585 passed
......@@ -450,6 +450,9 @@ static void bleProcMsg(bleMsg_t *pMsg)
LOG_INFO("ble", "Secure pairing successful, auth: 0x%02X",
pMsg->dm.pairCmpl.auth);
uiEvent = APP_UI_SEC_PAIR_CMPL;
/* After a successful pairing, bonding is disabled again.
* We don't want that for now. */
AppSetBondable(TRUE);
break;
case DM_SEC_PAIR_FAIL_IND:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment