1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-05-28 13:20:15 -07:00

Fill bits was incorrectly set to 0 on all single frame messages

This commit is contained in:
Peter Antypas 2021-07-10 23:08:47 -07:00
parent 2179398545
commit 6d9fd8c343

View File

@ -104,7 +104,7 @@ void NMEAEncoder::encode(RXPacket &packet, vector<string> &sentences)
}
else
{
sentence[k++] = '0';
sentence[k++] = '0' + fillBits;
}
sentence[k++] = '*';