Skip to content

Commit 0ea4f2a

Browse files
committed
Change user profile menu letter
1 parent f1ce7fc commit 0ea4f2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Firmware/RTK_Everywhere/menuMain.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,22 +97,22 @@ void menuMain()
9797
systemPrintln("e) Configure Ethernet");
9898
#endif // COMPILE_ETHERNET
9999

100-
systemPrintln("f) Firmware upgrade");
100+
systemPrintln("f) Firmware Update");
101101

102102
#ifdef COMPILE_ETHERNET
103103
if (present.ethernet_ws5500 == true)
104104
systemPrintln("n) Configure NTP");
105105
#endif // COMPILE_ETHERNET
106106

107-
systemPrintln("p) Configure User Profiles");
107+
systemPrintln("u) Configure User Profiles");
108108

109109
#ifdef COMPILE_ESPNOW
110110
systemPrintln("r) Configure Radios");
111111
#else // COMPILE_ESPNOW
112112
systemPrintln("r) **ESP-Now Not Compiled**");
113113
#endif // COMPILE_ESPNOW
114114

115-
systemPrintln("P) Configure PointPerfect");
115+
systemPrintln("p) Configure PointPerfect");
116116

117117
systemPrintln("s) Configure System");
118118

@@ -148,9 +148,9 @@ void menuMain()
148148
menuFirmware();
149149
else if (incoming == 'n' && (present.ethernet_ws5500 == true))
150150
menuNTP();
151-
else if (incoming == 'p')
151+
else if (incoming == 'u')
152152
menuUserProfiles();
153-
else if (incoming == 'P')
153+
else if (incoming == 'p')
154154
menuPointPerfect();
155155
#ifdef COMPILE_ESPNOW
156156
else if (incoming == 'r')

0 commit comments

Comments
 (0)