+
-
-
-
-
-
-
@@ -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?';