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

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

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