Skip to content

Commit

Permalink
Changed timer delay back to original value
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Jul 29, 2021
1 parent e7c1e5c commit 2b232b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/EFR32/BLEManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ bool BLEManagerImpl::SendIndication(BLE_CONNECTION_OBJECT conId, const ChipBleUU
VerifyOrExit(timerHandle != kMaxConnections, err = CHIP_ERROR_NO_MEMORY);

// start timer for light notification confirmation. Long delay for spake2 indication
sl_bt_system_set_soft_timer(TIMER_S_2_TIMERTICK(10), timerHandle, true);
sl_bt_system_set_soft_timer(TIMER_S_2_TIMERTICK(6), timerHandle, true);

ret = sl_bt_gatt_server_send_notification(conId, cId, (data->DataLength()), data->Start());
err = MapBLEError(ret);
Expand Down

0 comments on commit 2b232b1

Please sign in to comment.