diff --git a/simpleadmin/www/deviceinfo.html b/simpleadmin/www/deviceinfo.html
index a7db92b..c3fa93f 100644
--- a/simpleadmin/www/deviceinfo.html
+++ b/simpleadmin/www/deviceinfo.html
@@ -11,12 +11,12 @@
crossorigin="anonymous"
/> -->
-
-
+
+
-
-
+
+
@@ -209,7 +209,7 @@
-
+
-
+
+
@@ -514,7 +517,7 @@
-
+
@@ -790,11 +793,10 @@
}
// Construct the AT command using the valid pairs
- let atcmd = `+QNWLOCK="common/4g",${cellNum},${validPairs
+ let atcmd = `AT+QNWLOCK="common/4g",${cellNum},${validPairs
.map((pair) => `${pair.earfcn},${pair.pci}`)
.join(",")}`;
- atcmd = "AT+CFUN=0;" + atcmd + ";+CFUN=1";
-
+
// Mock data
this.showModal = true;
@@ -827,8 +829,7 @@
}
// Construct the AT command using the valid pairs
- let atcmd = `+QNWLOCK="common/5g",${earfcn},${pci},${scs},${band}`;
- atcmd = "AT+CFUN=0;" + atcmd + ";+CFUN=1";
+ let atcmd = `AT+QNWLOCK="common/5g",${earfcn},${pci},${scs},${band}`;
// Mock data
this.showModal = true;
@@ -847,7 +848,7 @@
},
cellLockDisableLTE() {
// Send the atcmd command to reset the locked bands
- const atcmd = 'AT+CFUN=0;+QNWLOCK="common/4g,0;+CFUN=1"';
+ const atcmd = 'AT+QNWLOCK="common/4g,0"';
this.showModal = true;
this.sendATcommand(atcmd);
@@ -863,7 +864,7 @@
},
cellLockDisableNR() {
// Send the atcmd command to reset the locked bands
- const atcmd = 'AT+CFUN=0;+QNWLOCK="common/5g,0;+CFUN=1"';
+ const atcmd = 'AT+QNWLOCK="common/5g,0"';
this.showModal = true;
@@ -928,6 +929,6 @@
});
});
-
+