Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion nimble/host/src/ble_hs_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,11 +481,14 @@ ble_hs_conn_timer(void)
#endif

struct ble_hs_conn *conn;
ble_npl_time_t now = ble_npl_time_get();
int32_t next_exp_in = BLE_HS_FOREVER;
int32_t next_exp_in_new;
bool next_exp_in_updated;

#if BLE_HS_ATT_SVR_QUEUED_WRITE_TMO || MYNEWT_VAL(BLE_L2CAP_RX_FRAG_TIMEOUT) != 0
ble_npl_time_t now = ble_npl_time_get();
int32_t time_diff;
#endif

ble_hs_lock();

Expand Down
Loading