Skip to content

Commit dc080d1

Browse files
committed
Update Example1_RAWX.ino
1 parent 810cdac commit dc080d1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

examples/NEO-F10N/Example1_RAWX/Example1_RAWX.ino

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ void setup()
260260
Serial.println(myGNSS.getFirmwareVersionLow()); // Returns uint8_t
261261

262262
Serial.print(F("Firmware: "));
263-
Serial.println(myGNSS.getFirmwareType()); // Returns HPG, SPG etc. as (const char *)
263+
Serial.println(myGNSS.getFirmwareType()); // Returns HPG, SPG, SPGL1L5 etc. as (const char *)
264264

265265
Serial.print(F("PROTVER: "));
266266
Serial.print(myGNSS.getProtocolVersionHigh()); // Returns uint8_t
@@ -273,11 +273,6 @@ void setup()
273273
else
274274
Serial.println(F("Error: could not read module info!"));
275275

276-
// Use the helper method to read the unique chip ID as a string
277-
// Returns "000000000000" if the read fails
278-
Serial.print(F("Unique chip ID: 0x"));
279-
Serial.println(myGNSS.getUniqueChipIdStr());
280-
281276
myGNSS.setUART1Output(COM_TYPE_UBX); //Set the UART1 port to output UBX only (turn off NMEA noise)
282277
myGNSS.saveConfigSelective(VAL_CFG_SUBSEC_IOPORT); //Save (only) the communications port settings to flash and BBR
283278

0 commit comments

Comments
 (0)