Skip to content

Commit

Permalink
fix(BLE): Setting default TIFS time (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-gillespie authored Aug 20, 2024
1 parent 4ca3d0a commit 186bb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Cordio/controller/sources/ble/bb/bb_ble_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static inline void bbBleClrIfs(void)
/*************************************************************************************************/
static inline void bbBleSetTifs(void)
{
PalBbBleOpParam_t opParams = { .ifsMode = PAL_BB_IFS_MODE_TOGGLE_TIFS, .ifsTime = 0, .pIfsChan = NULL };
PalBbBleOpParam_t opParams = { .ifsMode = PAL_BB_IFS_MODE_TOGGLE_TIFS, .ifsTime = LL_BLE_TIFS_US, .pIfsChan = NULL };
PalBbBleSetOpParams(&opParams);
}

Expand Down

0 comments on commit 186bb2c

Please sign in to comment.