File tree Expand file tree Collapse file tree 2 files changed +25
-25
lines changed Expand file tree Collapse file tree 2 files changed +25
-25
lines changed Original file line number Diff line number Diff line change @@ -351,30 +351,6 @@ void beginFS()
351
351
}
352
352
}
353
353
354
- void beginDisplay ()
355
- {
356
- blinking_icons = 0 ;
357
- if (oled.begin () == true )
358
- {
359
- online.display = true ;
360
-
361
- Serial.println (F (" Display started" ));
362
- displaySplash ();
363
- splashStart = millis ();
364
- }
365
- else
366
- {
367
- if (productVariant == RTK_SURVEYOR)
368
- {
369
- Serial.println (F (" Display not detected" ));
370
- }
371
- else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET || productVariant == RTK_FACET_LBAND)
372
- {
373
- Serial.println (F (" Display Error: Not detected." ));
374
- }
375
- }
376
- }
377
-
378
354
// Connect to ZED module and identify particulars
379
355
void beginGNSS ()
380
356
{
@@ -437,7 +413,7 @@ void beginGNSS()
437
413
Serial.printf (" Unknown ZED module: %s\n\r " , i2cGNSS.minfo .extension [3 ]);
438
414
zedModuleType = PLATFORM_F9P;
439
415
}
440
-
416
+
441
417
printModuleInfo (); // Print module type and firmware version
442
418
}
443
419
Original file line number Diff line number Diff line change 31
31
32
32
static uint32_t icons;
33
33
34
+ void beginDisplay ()
35
+ {
36
+ blinking_icons = 0 ;
37
+ if (oled.begin () == true )
38
+ {
39
+ online.display = true ;
40
+
41
+ Serial.println (F (" Display started" ));
42
+ displaySplash ();
43
+ splashStart = millis ();
44
+ }
45
+ else
46
+ {
47
+ if (productVariant == RTK_SURVEYOR)
48
+ {
49
+ Serial.println (F (" Display not detected" ));
50
+ }
51
+ else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET || productVariant == RTK_FACET_LBAND)
52
+ {
53
+ Serial.println (F (" Display Error: Not detected." ));
54
+ }
55
+ }
56
+ }
57
+
34
58
// Given the system state, display the appropriate information
35
59
void updateDisplay ()
36
60
{
You can’t perform that action at this time.
0 commit comments