Skip to content

Commit bfd9ee4

Browse files
committed
Enable SPARTN over USB
Fix for #713
1 parent e3db373 commit bfd9ee4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Firmware/RTK_Surveyor/System.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,10 @@ bool configureUbloxModule()
154154
response &= theGNSS.addCfgValset(UBLOX_CFG_USBINPROT_NMEA, 1);
155155
response &= theGNSS.addCfgValset(UBLOX_CFG_USBINPROT_RTCM3X, 1);
156156
if (commandSupported(UBLOX_CFG_USBINPROT_SPARTN) == true)
157-
response &= theGNSS.addCfgValset(UBLOX_CFG_USBINPROT_SPARTN, 0);
157+
{
158+
//See issue: https://github.com/sparkfun/SparkFun_RTK_Firmware/issues/713
159+
response &= theGNSS.addCfgValset(UBLOX_CFG_USBINPROT_SPARTN, 1);
160+
}
158161

159162
if (commandSupported(UBLOX_CFG_NAVSPG_INFIL_MINCNO) == true)
160163
{

0 commit comments

Comments
 (0)