Changeset 8691 in ntrip for branches


Ignore:
Timestamp:
Apr 25, 2019, 10:21:53 AM (5 years ago)
Author:
stuerze
Message:

NMEA string concluded with CRLF

Location:
branches/BNC_2.12/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncutils.cpp

    r8669 r8691  
    307307    XOR ^= (unsigned char) gga[ii].toAscii();
    308308  }
    309   gga = "$" + gga + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0'));
     309  gga = "$" + gga + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0')) + "\n";
    310310
    311311  return gga.toAscii();
  • branches/BNC_2.12/src/pppRun.cpp

    r8645 r8691  
    692692  }
    693693
    694   return '$' + nmStr + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0'));
     694  return '$' + nmStr + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0')) + "\n";
    695695}
    696696
Note: See TracChangeset for help on using the changeset viewer.