File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -775,32 +775,22 @@ void beginBoard()
775
775
present.brand = BRAND_SPARKPNT;
776
776
present.psram_2mb = true ;
777
777
778
- present.gnss_lg290p = true ;
779
-
780
778
present.antennaPhaseCenter_mm = 42.0 ; // Default to SPK6618H APC, average of L1/L2
781
779
present.radio_lora = true ;
782
780
present.fuelgauge_bq40z50 = true ;
783
781
present.charger_mp2762a = true ;
784
782
785
- // TODO Change to MFi present.encryption_atecc608a = true;
786
-
787
783
present.button_powerLow = true ; // Button is pressed when high
788
784
// present.button_mode = true; //TODO remove comment. This won't be available until v1.1 of hardware
789
785
present.beeper = true ;
790
786
present.gnss_to_uart = true ;
791
- present.needsExternalPpl = true ; // Uses the PointPerfect Library
792
-
793
- // TODO this will need to be based on module ID
794
- present.minCno = true ;
795
- present.minElevation = true ;
796
- present.dynamicModel = true ;
797
787
798
788
present.gpioExpanderSwitches = true ;
799
789
present.microSd = true ;
800
790
present.microSdCardDetectLow = true ;
801
791
802
792
present.display_i2c0 = true ;
803
- // present.i2c0BusSpeed_400 = true; // Run display bus at higher speed
793
+ present.i2c0BusSpeed_400 = true ; // Run display bus at higher speed
804
794
present.display_type = DISPLAY_128x64;
805
795
present.displayInverted = true ;
806
796
present.tiltPossible = true ;
Original file line number Diff line number Diff line change @@ -127,6 +127,12 @@ void gnssDetectReceiverType()
127
127
if (lg290pIsPresent () == true )
128
128
{
129
129
systemPrintln (" Auto-detected GNSS receiver: LG290P" );
130
+
131
+ present.gnss_lg290p = true ;
132
+ present.minCno = true ;
133
+ present.minElevation = true ;
134
+ present.needsExternalPpl = true ; // Uses the PointPerfect Library
135
+
130
136
settings.detectedGnssReceiver = GNSS_RECEIVER_LG290P;
131
137
recordSystemSettings (); // Record the detected GNSS receiver and avoid this test in the future
132
138
}
@@ -140,6 +146,13 @@ void gnssDetectReceiverType()
140
146
// else if (mosaicIsPresent() == true)
141
147
// {
142
148
// systemPrintln("Auto-detected GNSS receiver: mosaic-X5");
149
+
150
+ // present.gnss_mosaicX5 = true;
151
+ // present.minCno = true;
152
+ // present.minElevation = true;
153
+ // present.dynamicModel = true;
154
+ // present.needsExternalPpl = true; // Uses the PointPerfect Library
155
+
143
156
// settings.detectedGnssReceiver = GNSS_RECEIVER_MOSAIC_X5;
144
157
// recordSystemSettings(); // Record the detected GNSS receiver and avoid this test in the future
145
158
// }
You can’t perform that action at this time.
0 commit comments