diff --git a/simpleadmin/www/scanner.html b/simpleadmin/www/scanner.html index 20acd97..c012627 100644 --- a/simpleadmin/www/scanner.html +++ b/simpleadmin/www/scanner.html @@ -150,7 +150,7 @@
-
LTE and NSA Neighbourcell Scan
+
LTE and NR5G Neighbourcell Scan
@@ -177,12 +177,12 @@ x-model="neighbourCellsScanMode" > - + - +
- Neighbourcell scan will only scan LTE or NSA cells from + Neighbourcell scan will only scan LTE or NR5G cells from your network provider.
@@ -191,7 +191,7 @@ - - - - - - - -
Scan Neighbour LTE - -
Scan Neighbour NSA - -
@@ -313,7 +287,7 @@ Set TTL Value to 0 to disable.
-
+
- -
- - -
-
- + +
@@ -425,8 +387,6 @@ ethPassStatus: false, DNSProxyStatus: true, USBModeStatus: true, - fullScanModeType: "", - scanStart: false, closeModal() { this.confirmModal = false; @@ -544,52 +504,6 @@ }); }, - scanLTE() { - this.atcmd = 'AT+QENG="neighbourcell"'; - this.sendATCommand().then(() => { - this.fetchCurrentSettings(); - }); - }, - - scanNSA() { - this.atcmd = - 'AT+QNWCFG="nr5g_meas_info",1;+QNWCFG="nr5g_meas_info"'; - this.sendATCommand().then(() => { - this.fetchCurrentSettings(); - }); - }, - - fullScanMode() { - switch (this.fullScanModeType) { - case "LTE": - this.atcmd = "AT+QSCAN=1,1"; - this.scanStart = true; - this.atCommandResponse = - "Scanning all available LTE networks... This might take a while."; - this.sendATCommand(); - this.scanStart = false; - break; - case "NR5G": - this.atcmd = "AT+QSCAN=2,1"; - this.scanStart = true; - this.atCommandResponse = - "Scanning all available NR5G-SA networks... This might take a while."; - this.sendATCommand(); - this.scanStart = false; - break; - case "ALL": - this.atcmd = "AT+QSCAN=3,1"; - this.scanStart = true; - this.atCommandResponse = - "Scanning all available networks... This might take a while."; - this.sendATCommand(); - this.scanStart = false; - break; - default: - alert("Select a Scan Mode First"); - } - }, - fetchCurrentSettings() { this.fetchATCommand = 'AT+QMAP="MPDN_RULE";+QMAP="DHCPV4DNS";+QMAPWAC?';