We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bd976 commit 8704dd7Copy full SHA for 8704dd7
1 file changed
src/gps.cpp
@@ -321,7 +321,8 @@ bool Gps::checkCommunication() {
321
322
bool Gps::sendAndWaitForAck(UBX_MSG ubxMsgId, const uint8_t *buffer, size_t size) {
323
const int tries = 3;
324
- const int timeoutMs = 1000;
+ // we had the case see https://github.com/openbikesensor/OpenBikeSensorFirmware/issues/309
325
+ const int timeoutMs = 3000;
326
327
bool result = false;
328
for (int i = 0; i < tries; i++) {
0 commit comments