File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
examples/NEO-F10N/Example1_RAWX Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ void setup()
260
260
Serial.println (myGNSS.getFirmwareVersionLow ()); // Returns uint8_t
261
261
262
262
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 *)
264
264
265
265
Serial.print (F (" PROTVER: " ));
266
266
Serial.print (myGNSS.getProtocolVersionHigh ()); // Returns uint8_t
@@ -273,11 +273,6 @@ void setup()
273
273
else
274
274
Serial.println (F (" Error: could not read module info!" ));
275
275
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
-
281
276
myGNSS.setUART1Output (COM_TYPE_UBX); // Set the UART1 port to output UBX only (turn off NMEA noise)
282
277
myGNSS.saveConfigSelective (VAL_CFG_SUBSEC_IOPORT); // Save (only) the communications port settings to flash and BBR
283
278
You can’t perform that action at this time.
0 commit comments