@@ -658,8 +658,6 @@ struct Settings
658
658
// Once we detect the platform or receiver, no need to re-detect
659
659
// ProductVariant previouslyDetectedPlatform = RTK_UNKNOWN; //Because LFS is started after deviceID, this is mute
660
660
gnssReceiverType_e detectedGnssReceiver = GNSS_RECEIVER_UNKNOWN;
661
- bool detectedTilt = false ;
662
- bool testedTilt = false ;
663
661
664
662
// Antenna
665
663
int16_t antennaHeight_mm = 1800 ; // Aka Pole length
@@ -750,6 +748,10 @@ struct Settings
750
748
bool debugHttpClientData = false ; // Debug the HTTP Client (ZTP) data flow
751
749
bool debugHttpClientState = false ; // Debug the HTTP Client state machine
752
750
751
+ // IMU
752
+ bool detectedTilt = false ;
753
+ bool testedTilt = false ;
754
+
753
755
// Log file
754
756
bool alignedLogFiles = false ; // If true, align log files as per #630
755
757
bool enableLogging = true ; // If an SD card is present, log default sentences
@@ -1239,8 +1241,6 @@ const RTK_Settings_Entry rtkSettingsEntries[] =
1239
1241
1240
1242
// Detected GNSS Receiver - for Flex. Save / load first so settingAvailableOnPlatform is correct on Flex
1241
1243
{ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , ALL, tGnssReceiver, 0 , & settings.detectedGnssReceiver , " detectedGnssReceiver" , },
1242
- { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , ALL, _bool, 0 , & settings.detectedTilt , " detectedTilt" , },
1243
- { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , ALL, _bool, 0 , & settings.testedTilt , " testedTilt" , },
1244
1244
1245
1245
// Common settings which use the same name on multiple Facet Flex platforms
1246
1246
// We need these - for Facet Flex - because:
@@ -1396,6 +1396,10 @@ const RTK_Settings_Entry rtkSettingsEntries[] =
1396
1396
{ 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , ALL, _bool, 0 , & settings.debugHttpClientData , " debugHttpClientData" , },
1397
1397
{ 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , ALL, _bool, 0 , & settings.debugHttpClientState , " debugHttpClientState" , },
1398
1398
1399
+ // IMU
1400
+ { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , ALL, _bool, 0 , & settings.detectedTilt , " detectedTilt" , },
1401
+ { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , ALL, _bool, 0 , & settings.testedTilt , " testedTilt" , },
1402
+
1399
1403
// F
1400
1404
// a
1401
1405
// F c
0 commit comments