Skip to content

Commit

Permalink
Increase min and max time intervals to allow the connections up to 5 …
Browse files Browse the repository at this point in the history
…BLE peripherals
  • Loading branch information
giulcioffi committed Oct 30, 2020
1 parent d6ae09d commit 405619c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utility/ATT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ bool ATTClass::connect(uint8_t peerBdaddrType, uint8_t peerBdaddr[6])
{
// original supervision timeout "0x00c8" seems to be too short for Nano 33 BLE (2 seconds)
if (HCI.leCreateConn(0x0060, 0x0030, 0x00, peerBdaddrType, peerBdaddr, 0x00,
0x0006, 0x000c, 0x0000, 1000, 0x0004, 0x0006) != 0) {
0x001c, 0x0020, 0x0000, 1000, 0x0004, 0x0006) != 0) {
return false;
}

Expand Down

0 comments on commit 405619c

Please sign in to comment.