Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Firmware/RTK_Surveyor/AP-Config/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1351,11 +1351,11 @@
<div id="wifiConfigTypeDropdown" class="mt-3">
<label for="wifiConfigType">Configure Mode: </label>
<select name="wifiConfigType" id="wifiConfigOverAP" class="form-dropdown">
<option value="1">AP</option>
<option value="0">WiFi</option>
<option value="1">Access Point</option>
<option value="0">Station Client</option>
</select>
<span class="tt" data-bs-placement="right"
title="In AP mode, the device will broadcast as an access point called RTK-Config. In WiFi mode, the device will connect to local WiFi and be configurable on the displayed IP address.">
title="Access Point mode broadcasts SSID &quot;RTK-Config&quot;. Station Client mode connects to the configured SSID.">
<span class="icon-info-circle text-primary ms-2"></span>
</span>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Firmware/RTK_Surveyor/WiFi.ino
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ void menuWiFi()
systemPrintf("%d) Password %d: %s\r\n", (x * 2) + 2, x + 1, settings.wifiNetworks[x].password);
}

systemPrint("a) Configure device via WiFi Access Point or connect to WiFi: ");
systemPrintf("%s\r\n", settings.wifiConfigOverAP ? "AP" : "WiFi");
systemPrint("a) Configure device WiFi as Access Point or Station Client: ");
systemPrintf("%s\r\n", settings.wifiConfigOverAP ? "AP" : "STA");

systemPrint("c) Captive Portal: ");
systemPrintf("%s\r\n", settings.enableCaptivePortal ? "Enabled" : "Disabled");
Expand Down