Skip to content
Merged
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
2 changes: 1 addition & 1 deletion nimble/controller/src/ble_ll_ctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2131,7 +2131,7 @@ ble_ll_conn_chk_conn_update_req(const struct ble_ll_conn_upd_req *req)
/* The transmitWindowSize shall be a multiple of 1.25 ms in the range
* 1.25 ms to the lesser of 10 ms and (connInterval - 1.25 ms).
*/
if ((req->winsize < 1) || (req->winsize > min(8, req->interval - 1))) {
if ((req->winsize < 1) || (req->winsize > MIN(8, req->interval - 1))) {
return false;
}

Expand Down
Loading