Skip to content

Commit

Permalink
Update app_slave.c
Browse files Browse the repository at this point in the history
  • Loading branch information
EricB-ADI authored Nov 22, 2023
1 parent bd4fde4 commit ecae05c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Cordio/ble-profiles/sources/af/app_slave.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ static void appSlaveConnUpdate(dmEvt_t *pMsg, appConnCb_t *pCb)
pMsg->connUpdate.connInterval <= pAppUpdateCfg->connIntervalMax;

/* if successful and we got an update using one of our requested values*/
if ((pMsg->hdr.status == HCI_SUCCESS && intervalInBetween ))
if (pMsg->hdr.status == HCI_SUCCESS && intervalInBetween)
{
pCb->attempts = 0;
/* stop connection update timer */
Expand Down

0 comments on commit ecae05c

Please sign in to comment.