@@ -756,30 +756,26 @@ void menuOperation()
756756 else
757757 systemPrintln (" Disabled - no resets" );
758758
759- // Power button
760- systemPrint (" 6) Power button filtering: " );
761- systemPrintf (" %s\r\n " , settings.powerButtonFiltering ? " Enabled" : " Disabled" );
762-
763759 // SPI
764- systemPrint (" 7 ) SPI/SD Interface Frequency: " );
760+ systemPrint (" 6 ) SPI/SD Interface Frequency: " );
765761 systemPrint (settings.spiFrequency );
766762 systemPrintln (" MHz" );
767763
768764 // SPP
769- systemPrint (" 8 ) SPP RX Buffer Size: " );
765+ systemPrint (" 7 ) SPP RX Buffer Size: " );
770766 systemPrintln (settings.sppRxQueueSize );
771767
772- systemPrint (" 9 ) SPP TX Buffer Size: " );
768+ systemPrint (" 8 ) SPP TX Buffer Size: " );
773769 systemPrintln (settings.sppTxQueueSize );
774770
775771 // UART
776- systemPrint (" 10 ) UART Receive Buffer Size: " );
772+ systemPrint (" 9 ) UART Receive Buffer Size: " );
777773 systemPrintln (settings.uartReceiveBufferSize );
778774
779775 // ZED
780- systemPrintln (" 11 ) Mirror ZED-F9x's UART1 settings to USB" );
776+ systemPrintln (" 10 ) Mirror ZED-F9x's UART1 settings to USB" );
781777
782- systemPrint (" 12 ) Use I2C for L-Band Corrections: " );
778+ systemPrint (" 11 ) Use I2C for L-Band Corrections: " );
783779 systemPrintf (" %s\r\n " , settings.useI2cForLbandCorrections ? " Enabled" : " Disabled" );
784780
785781 systemPrintln (" ---- Interrupts ----" );
@@ -886,8 +882,6 @@ void menuOperation()
886882 }
887883 }
888884 else if (incoming == 6 )
889- settings.powerButtonFiltering ^= 1 ;
890- else if (incoming == 7 )
891885 {
892886 systemPrint (" Enter SPI frequency in MHz (1 to 16): " );
893887 int freq = getNumber (); // Returns EXIT, TIMEOUT, or long
@@ -899,7 +893,7 @@ void menuOperation()
899893 settings.spiFrequency = freq; // Recorded to NVM and file at main menu exit
900894 }
901895 }
902- else if (incoming == 8 )
896+ else if (incoming == 7 )
903897 {
904898 systemPrint (" Enter SPP RX Queue Size in Bytes (32 to 16384): " );
905899 int queSize = getNumber (); // Returns EXIT, TIMEOUT, or long
@@ -911,7 +905,7 @@ void menuOperation()
911905 settings.sppRxQueueSize = queSize; // Recorded to NVM and file at main menu exit
912906 }
913907 }
914- else if (incoming == 9 )
908+ else if (incoming == 8 )
915909 {
916910 systemPrint (" Enter SPP TX Queue Size in Bytes (32 to 16384): " );
917911 int queSize = getNumber (); // Returns EXIT, TIMEOUT, or long
@@ -923,7 +917,7 @@ void menuOperation()
923917 settings.sppTxQueueSize = queSize; // Recorded to NVM and file at main menu exit
924918 }
925919 }
926- else if (incoming == 10 )
920+ else if (incoming == 9 )
927921 {
928922 systemPrintln (" Warning: changing the Receive Buffer Size will restart the RTK. Enter 0 to abort" );
929923 systemPrint (" Enter UART Receive Buffer Size in Bytes (32 to 16384): " );
@@ -940,7 +934,7 @@ void menuOperation()
940934 }
941935 }
942936 }
943- else if (incoming == 11 )
937+ else if (incoming == 10 )
944938 {
945939 bool response = setMessagesUSB (MAX_SET_MESSAGES_RETRIES);
946940
@@ -949,7 +943,7 @@ void menuOperation()
949943 else
950944 systemPrintln (F (" USB messages successfully enabled" ));
951945 }
952- else if (incoming == 12 )
946+ else if (incoming == 11 )
953947 {
954948 settings.useI2cForLbandCorrectionsConfigured = true ; // Record that the user has manually modified the settings.
955949 settings.useI2cForLbandCorrections ^= 1 ;
0 commit comments