Created
March 15, 2023 23:56
-
-
Save laroo/346674840c25db9d86e532c33e255cc3 to your computer and use it in GitHub Desktop.
NMEA commands for u-blox NEO-6M gps receiver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disabling all NMEA sentences | |
$PUBX,40,GGA,0,0,0,0*5A // Disable GGA | |
$PUBX,40,GLL,0,0,0,0*5C // Disable GLL | |
$PUBX,40,GSA,0,0,0,0*4E // Disable GSA | |
$PUBX,40,GSV,0,0,0,0*59 // Disable GSV | |
$PUBX,40,RMC,0,0,0,0*47 // Disable RMC | |
$PUBX,40,VTG,0,0,0,0*5E // Disable VTG | |
$PUBX,40,ZDA,0,0,0,0*44 // Disable ZDA | |
# Enabling all NMEA sentences | |
$PUBX,40,GGA,0,1,0,0*5B // Enable GGA | |
$PUBX,40,GLL,0,1,0,0*5D // Enable GLL | |
$PUBX,40,GSA,0,1,0,0*4F // Enable GSA | |
$PUBX,40,GSV,0,1,0,0*58 // Enable GSV | |
$PUBX,40,RMC,0,1,0,0*46 // Enable RMC | |
$PUBX,40,VTG,0,1,0,0*5F // Enable VTG | |
$PUBX,40,ZDA,0,1,0,0*45 // Enable ZDA |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment