Skip to content
Snippets Groups Projects
Commit 7ff38ef8 authored by Steven Murray's avatar Steven Murray
Browse files

Increased the maximum number of error messages in an RMC reply from 2 to 10

parent fcdc053d
Branches
Tags
No related merge requests found
......@@ -205,9 +205,9 @@ protected:
io::writeBytes(fd.get(), m_netTimeout, len, buf);
}
// A single RMC reply is composed of 0 to 2 ERR_MSG replies
// A single RMC reply is composed of 0 to 10 ERR_MSG replies
// followed by a terminating RMC_RC reply
const int maxERR_MSG = 2;
const int maxERR_MSG = 10;
int nbERR_MSG = 0;
while(true) {
const MessageHeader header = readRmcMsgHeader(fd.get());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment