Skip to content

Commit

Permalink
raw only won't work with GPSes that don't speak NMEA (should fix #4050)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 7, 2012
1 parent eca69c2 commit 051749a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/gps/qgsgpsdconnection.cpp
Expand Up @@ -41,7 +41,7 @@ void QgsGpsdConnection::connected()
{
QgsDebugMsg( "connected!" );
QTcpSocket *socket = qobject_cast< QTcpSocket * >( mSource );
socket->write( QString( "?WATCH={\"enable\":true,\"raw\":true%1};" ).arg( mDevice.isEmpty() ? mDevice : QString( ",\"device\":%1" ).arg( mDevice ) ).toUtf8() );
socket->write( QString( "?WATCH={\"enable\":true,\"nmea\":true,\"raw\":true%1};" ).arg( mDevice.isEmpty() ? mDevice : QString( ",\"device\":%1" ).arg( mDevice ) ).toUtf8() );
}

void QgsGpsdConnection::error( QAbstractSocket::SocketError socketError )
Expand Down

0 comments on commit 051749a

Please sign in to comment.