forked from tomazas/ATCommandTester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATCommandTester.java
14750 lines (13705 loc) · 551 KB
/
ATCommandTester.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//import com.siemens.icm.io.ATStringConverter;
import java.awt.CardLayout;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Desktop;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Arrays;
import java.util.List;
import java.util.Random;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JScrollBar;
import javax.swing.JScrollPane;
import javax.swing.JSeparator;
import javax.swing.JTabbedPane;
import javax.swing.JTable;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.SwingWorker;
import javax.swing.UIManager;
import javax.swing.border.LineBorder;
import javax.swing.border.TitledBorder;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumn;
import javax.swing.text.BadLocationException;
import javax.swing.text.Style;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;
public class ATCommandTester extends JFrame {
public String version = "27";
public JLabel lblPort;
public JComboBox comboBox;
public JLabel lblBaudRatekpbs;
public JComboBox comboBox_1;
public JButton btnFindPorts;
public JButton btnConnect;
public JButton btnDisconnect;
public JTextField textField;
public JButton btnSubmit;
public String passed_cmd;
public String msg;
public int connect_status = 0;
public int attach_status = 0;
public int num_profiles_connected = 0;
public String connected_profile = null;
public String ring_acknowledged = "FALSE";
public String phone_number = "";
public String voice_call_connected = "FALSE";
public String refresh_bearer_list = "FALSE";
public String bearer_cid = "";
public String global_bearer_cid = "";
public String global_bearer_state = "";
public String global_bearer_ip = "";
public String httppara_set = "FAIL";
public String httpaction_result = "FAIL";
public String httpread_result = "FAIL";
public String httpterm_result = "FAIL";
public String httpinit_response = "FAIL";
public String ftp_set = "FAIL";
public String ftp_get_result = "FAIL";
public String ftp_get_data = "FAIL";
public String ftp_put_data = "";
public int ftp_put_data_len = 0;
public double ftp_blocks = 0.0D;
public int max_ftp_data_len = 0;
public int ftp_start_byte = 0;
public int ftp_end_byte = 0;
public int data_to_send = 0;
public String ftp_data_over = "FALSE";
public String global_model_no = "";
public String global_manufacturer_name = "";
public String global_gps_status = "";
public String tcp_local_ip_address = "";
public String ciicr_status = "FAIL";
public String cstt_status = "FAIL";
public String cip_start_status = "FAIL";
public String tcp_connection_status = "NONE";
public String global_at_response = "";
static final String ALL = "All";
static final String SIMCOM = "Simcom";
static final String TELIT = "Telit";
static final String QUECTEL = "Quectel";
static final String HUAWEI = "Huawei";
String[] module_int = { "Simcom", "Telit", "Quectel" };
String[] module_sim_tel = { "Simcom", "Telit" };
String[] module_int_simcom = { "Simcom" };
String[] module_int_telit = { "Telit" };
String[] module_all = { "All", "Simcom", "Huawei" };
public String[] port_speed = { "300", "1200", "2400", "9600", "19200",
"38400", "57600", "115200", "230400" };
public String[] port_speed_1 = { "4800", "9600", "19200", "38400", "57600" };
String scfg_status = "FALSE";
public int num_socket_profiles = 0;
public String[] connId = { "", "", "", "", "", "" };
public String[] pdpId = { "", "", "", "", "", "" };
public String[] socketState = { "", "", "", "", "", "" };
public String[] socketDataSent = { "", "", "", "", "", "" };
public String[] socketDataReceived = { "", "", "", "", "", "" };
public String[] socketPdpStatus = { "", "", "", "", "", "" };
public String[] socketPdpId = { "", "", "", "", "", "" };
public String tcp_mod_sel = "Simcom";
public String http_mod_sel = "Simcom";
public String gps_mod_sel = "Simcom";
public String ftp_mod_sel = "Simcom";
public String email_mod_sel = "Telit";
public String socket_pdp_activation_status = "FAIL";
public String socket_pdp_deactivation_status = "FAIL";
public String[] socketIds = { "1", "2", "3", "4", "5", "6" };
public String[] server_addr_type = { "IP", "Domain Name" };
public String[] protocol = { "TCP", "UDP" };
public String[] socket_dial_mode = { "Online", "Command" };
public String telit_ftp_status = "FAIL";
public String telit_email_status = "FAIL";
public Long time;
public String cgact_action = "none";
public int huawei_ip_init = 0;
public int huawei_ip_open = 0;
public String default_apn = "";
public int gbl_sms_mode = 0;
public String[] at_command_scripts = { "Get Device Info",
"Get Registration Status", "Check SIM Card Status",
"Initiate Voice Call", "Initiate Data Call", "Telit - HTTP",
"Telit - FTP Get", "Telit - FTP Put", "Telit - GPS", "Telit - TCP",
"Simcom - HTTP", "Simcom - FTP Get", "Simcom - FTP Put",
"Simcom - TCP", "Simcom - GPS", "Quectel HTTP" };
public String[] at_command_script_content = {
"//Check Modem communciation\nAT\n\n//Get Product name\nATI\n\n//Get manufacturer Info\nAT+GSV\n\n//Get device phone number\nAT+CIMI\n\n//Get the device serial number\nAT+GSN\n",
"//Get current operator that network is registered\nAT+COPS?\n\n//Display the Operator names\nAT+COPN\n\n//Get the registration status\nAt+CREG?\n",
"//Check the SIM card status. If it returns READY, then further operations can continue. If it returns PIN code, then SIM should be unlocked\nAT+CPIN?\n",
"//Get the registration status of the device. If the status is '1', the device is registered and in home network\nAT+CGREG?\n\n//Dial the number. Change the number in the example below\nATD7767788888;\n",
"//Get the registration status of the device. If the status is '1', the device is registered and in home network\nAT+CGREG?\n\n//Perform a GPRS Attach\nAT+CGATT=1\n\n//Check the status of attach\nAT+CGATT?\n\n//Set up PDP context. Refer to the service provider for APN info\nAT+CGDCONT=1,\"IP\",\"apn1.globalm2m.net\"\n\n//Activate the PDP context\nAT+CGACT=1,1\n",
"//Check registration status\nAT+CREG?\n\n//Get the configuration of the sockets\nAT#SCFG?\n\n//Check if any socket has been activated\nAT#SGACT?\n\n//Activate the socket 1\nAT#SGACT=1,1\n\n//Wait for socket activation\nWAIT=4\n\n//Dial the socket. Port 80 is TCP connection.\nAT#SD=1,0,80,\"www.m2msupport.net\"\n\n//Wait for the CONNECT message\nWAIT=4\n\n//Send the HTTP formatted data\n<cr><lf>GET /m2msupport/http_get_test.php HTTP/1.1<cr><lf>Host:www.m2msupport.net<cr><lf>Connection:keep-alive<cr><lf>",
"//Check registration status\nAT+CREG?\n\n//Get the configuration of the sockets\nAT#SCFG?\n\n//Check if any socket has been activated\nAT#SGACT?\n\n//Activate the socket 1\nAT#SGACT=1,1\n\n//Wait till Socket is activated.\nWAIT=5\n\n//Set FTP timeout\nAT#FTPTO=1000\n\n//Open the FTP connection\nAT#FTPOPEN=\"ftp.m2msupport.net\",\"xxxxx\",\"xxxxxx\",0\n\n//Wait for FTP session to open\nWAIT=6\n\n//Set the FTP transfer type\nAT#FTPTYPE=0\n\n//Change directory\nAT#FTPCWD=\"/www/m2msupport\"\n\n//Get the FTP file\nAT#FTPGET=\"ftptest.txt\"\n\n//Wait till FTP get is finished\nWAIT=5\n\n//Close the FTP connection\nAT#FTPCLOSE\n",
"//Check registration status\nAT+CREG?\n\n//Get the configuration of the sockets\nAT#SCFG?\n\n//Check if any socket has been activated\nAT#SGACT?\n\n//Activate the socket 1\nAT#SGACT=1,1\n\n//Wait till Socket is activated.\nWAIT=5\n\n//Set FTP timeout\nAT#FTPTO=1000\n\n//Open the FTP connection\nAT#FTPOPEN=\"ftp.m2msupport.net\",\"xxxxx\",\"xxxxxx\",0\n\n//Wait for FTP session to open\nWAIT=6\n\n//Set the FTP transfer type\nAT#FTPTYPE=0\n//Change directory\nAT#FTPCWD=\"/www/m2msupport\"\n\n//Put the FTP file\nAT#FTPPUT=\"test2.txt\"\n\n//Wait for CONNECT response\nWAIT=6\n\n//Send the data\nftpdata is being\n\n//+++ to indicate end of data\n//<!crlf> is to tell the script processor not to send <cr><lf>\n+++<!crlf>\n\n//Wait till FTP get is finished\nWAIT=5\n\n//Close the FTP connection\nAT#FTPCLOSE\n",
"//Turn on the GPS\nAT$GPSP=1\n\n//Do a GPS cold reset\nAT$GPSR=1\n\n//Wait for the reset\nWAIT=5\n\n//Get the GPS fix data\nAT$GPSACP\n\n",
"//Check registration status\nAT+CREG?\n\n//Get the configuration of the sockets\nAT#SCFG?\n\n//Check if any socket has been activated\nAT#SGACT?\n\n//Activate the socket 1\nAT#SGACT=1,1\n\n//Wait till Socket is activated.\nWAIT=5\n\n//Set up a TCP connection to google.\n//Port 80 is for TCP\nAT#SD=1,0,80,\"www.google.com\",0,0,0\n",
"//Check the registration status\nAT+CREG?\n\n//Check whether bearer 1 is open.\nAT+SAPBR=2,1\n\n//Enable bearer 1\nAT+SAPBR=1,1\n\n//Wait untial bearer is activated\nWAIT=6\n\n//Initialize HTTP service\nAT+HTTPINIT\n\n//Set the HTTP URL\nAT+HTTPPARA=\"URL\",\"http://www.m2msupport.net/m2msupport/http_get_test.php\"\n\n//Set the context ID\nAT+HTTPPARA=\"CID\",1\n\n//Set up the HTTP action\nAT+HTTPACTION=0\n\n//Do a HTTP read\nAT+HTTPREAD\n\n//Wait for the HTTP response\nWAIT=6\n\n//Terminate the HTTP service\nAT+HTTPTERM\n\n",
"//Get the registration status\nAT+CREG?\n\n//Query the bearer state\nAT+SAPBR=2,1\n\n//Open Bearer 1\nAT+SAPBR=1,1\n\n//Wait for the bearer to be opened\nWAIT=6\n\n//Set the the CID for FTP session\nAT+FTPCID=1\n\n//Set the FTP server name\nAT+FTPSERV=\"ftp.m2msupport.net\"\n\n//Set the FTP user name\nAT+FTPUN=\"xxxxx\"\n\n//Set the FTP password\nAT+FTPPW=\"xxxx\"\n\n//Set the FTP filename to get\nAT+FTPGETNAME=\"ftptest.txt\"\n\n//Set the FTP directory\nAT+FTPGETPATH=\"/www/m2msupport/\"\n\n//Perform a FTP get\nAT+FTPGET=1\n\n//Wait\nWAIT=6\n\n//Get the data\nAT+FTPGET=2,1024\n",
"//Checking registration status\nAT+CREG?\n\n//Querying bearer 1\nAT+SAPBR=2,1\n\n//Opening Bearer 1\nAT+SAPBR=1,1\n\n//Setting up FTP parameters\nAT+FTPCID=1\n\n//Set up FTP server\nAT+FTPSERV=\"ftp.m2msupport.net\"\n\n//Set up FTP username\nAT+FTPUN=\"xxxxx\"\n\n//Set up FTP password\nAT+FTPPW=\"xxxxxxx\"\n\n//Set up FTP file to upload\nAT+FTPPUTNAME=\"ftpputtest.txt\"\n\n//Set up FTP directory\nAT+FTPPUTPATH=\"/www/m2msupport/\"\n\n//Start FTP session\nAT+FTPPUT=1\n\n//Wait\nWAIT=5\n\n//Set for 10 bytes to transfer. Change the byte counter accordingly\nAT+FTPPUT=2,10\n\n//Wait for acknowledgement\nWAIT=7\n\n//Send the data\n0123456789\n\n//Wait to send data\nWAIT=5\n\n//Indicate that no more data to send\nAT+FTPPUT=2,0\n",
"//Check the registration status\nAT+CREG?\n\n//Check attach status\nAT+CGACT?\n\n//Attach to the network\nAT+CGATT=1\n\n//Wait for Attach\nWAIT=7\n\n//Start task ans set the APN. Check your carrier APN\nAT+CSTT=\"bluevia.movistar.es\"\n\n//Bring up the wireless connection\nAT+CIICR\n\n//Wait for bringup\nWAIT=6\n\n//Get the local IP address\nAT+CIFSR\n\n//Start a TCP connection to remote address. Port 80 is TCP.\nAT+CIPSTART=\"TCP\",\"74.124.194.252\",\"80\"\n",
"//Turn GPS on\nAT+CGPSPWR=1\n\n//Reset the GPS in autonomy mode\nAT+CGPSRST=0\n\n//Wait for the GPS reset\nWAIT=15\n\n//Get the current GPS location\nAT+CGPSINF=0\n\n",
"//Checking registration status\nAT+CREG?\n\n//Configure the context as foreground\nAT+QIFGCNT=0\n\n//Set the APN\nAT+QICSGP=1,\"bluevia.movistar.es\"\n\n//Disable MUXIP\nAT+QIMUX=0\n\n//Set session mode to non-transparent\nAT+QIMODE=0\n\n//Setting server address is Domain Name\nAT+QIDNSIP=1\n\n//Register the TCP/IP stack\nAT+QIREGAPP\n\n//Activate Foreground context\nAT+QIACT\n\n//Wait for contect activation\nWAIT=5\n\n//Show the received IP address\nAT+qishowra=1\n\n//Get local IP address\nAT+QILOCIP\n\n//Connect to the remote server\nAT+QIOPEN=\"TCP\",\"www.m2msupport.net\",80\n\n//Wait for the CONNECT prompt\nWAIT=5\n\n//Send the data\nAT+QISEND\n\n//Wait for the > prompt\nWAIT=2\n\n//Send the HTTP formatted data\n<cr><lf>GET /m2msupport/http_get_test.php HTTP/1.1<cr><lf>Host:www.m2msupport.net<cr><lf>Connection:keep-alive<cr><lf>\n\n//Wait and sent ctrl+z to complete sending\nWAIT=2\n\n//Send the CtrlZ character\n^z" };
public String[] at_commands = { "AT", "AT+CACM", "AT+CALA", "AT+CALD",
"AT+CALM", "AT+CAOC", "AT+CAPD", "AT+CASIMS", "AT+CAVIMS",
"AT+CBC", "AT+CBCAP", "AT+CBCHG", "AT+CBKLT", "AT+CBSD", "AT+CBST",
"AT+CCHC", "AT+CCHO", "AT+CCLK", "AT+CCWA", "AT+CDIS", "AT+CEAP",
"AT+CECALL", "AT+CEER", "AT+CEN", "AT+CEREG", "AT+CERP", "AT+CESQ",
"AT+CFCS", "AT+CFUN", "AT+CGACT", "AT+CGANS", "AT+CGATT",
"AT+CGAUTH", "AT+CGAUTO", "AT+CGCLASS", "AT+CGCMOD",
"AT+CGCONTRDP", "AT+CGDATA", "AT+CGDCONT", "AT+CGDEL",
"AT+CGDSCONT", "AT+CGEQMIN", "AT+CGEQREQ", "AT+CGEREP", "AT+CGLA",
"AT+CGMI", "AT+CGMM", "AT+CGMR", "AT+CGPADDR", "AT+CGPIAF",
"AT+CGQMIN", "AT+CGQREQ", "AT+CGREG", "AT+CGSCONTRDP", "AT+CGSMS",
"AT+CGSN", "AT+CHUP", "AT+CIMI", "AT+CIND", "AT+CIPCA", "AT+CIREG",
"AT+CISRVCC", "AT+CISRVCC", "AT+CKPD", "AT+CLAC", "AT+CLAE",
"AT+CLAN", "AT+CLCK", "AT+CLIP", "AT+CMAR", "AT+CMEE", "AT+CMOD",
"AT+CMOLR", "AT+CMOLRE", "AT+CMUT", "AT+CMUX", "AT+CNAP",
"AT+CNMPSD", "AT+CNUM", "AT+COLP", "AT+COPN", "AT+COPS", "AT+CPAS",
"AT+CPBF", "AT+CPBR", "AT+CPBW", "AT+CPIN", "AT+CPINR", "AT+CPLS",
"AT+CPNET", "AT+CPOL", "AT+CPOS", "AT+CPOSR", "AT+CPSB", "AT+CPWC",
"AT+CPWD", "AT+CR", "AT+CRC", "AT+CREG", "AT+CRLA", "AT+CRLP",
"AT+CRMC", "AT+CRMP", "AT+CRSL", "AT+CRSM", "AT+CSCC", "AT+CSCON",
"AT+CSCS", "AT+CSDF", "AT+CSGT", "AT+CSIL", "AT+CSIM", "AT+CSNS",
"AT+CSO", "AT+CSQ", "AT+CSS", "AT+CSTA", "AT+CSTF", "AT+CSUS",
"AT+CSVM", "AT+CTFR", "AT+CTSA", "AT+CTZR", "AT+CTZU", "AT+CUAD",
"AT+CVHU", "AT+CVIB", "AT+CVMOD", "AT+FCLASS", "AT+HTTPACTION",
"AT+HTTPINIT", "AT+HTTPPARA", "AT+HTTPREAD", "AT+HTTPTERM",
"AT+IPR", "AT+LVL", "AT+WS46", "ATA", "ATD", "ATDL", "ATH" };
public String[] at_command_examples = {
"Description:\r\nAT command returns OK which implies that the communication between the device and the application has been verified.\r\n\r\nExamples:\r\nAT\r\nOK",
"Description:\r\nAT+CACM AT command resets the accumulated call meter value on the SIM.\r\n\r\nExamples:\r\nAT+CACM\r\nOK",
"Description:\r\nAT+CALA AT command sets the alarm on the device.\r\n\r\nExamples:\r\nAT+CALA=�00/06/09,07:30�\r\nOK\r\nAT+CALA?\r\n+CALA: “00/06/09,07:30:00�,1",
"Description:\r\nAT+CALD AT command deletes alarm on the mobile device.\r\n\r\nExamples:\r\nAT+CALD=1\r\nOK",
"Description:\r\nAT+CALM AT command is used to set the alert mode. Possibl1 values are,\r\n\r\n0 normal mode\r\n1 silent mode (all sounds from MT are prevented)\r\n2… manufacturer specific\r\n\r\nExamples:\r\nAT+CALM=1\r\nOK",
"Description:\r\nAT+CAOC AT command enables subscriber to get information about cost of calls.\r\n\r\nExamples:\r\nAT+CAOC=2\r\nOK",
"Description:\r\nAT+CAPD postpones or dismisses a current active alarm.\r\n\r\nExamples:\r\nAT+CAPD=2\r\nOK",
"Description:\r\nAT+CASIMS AT command sets whether SMS over IMS is available or not.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CAVIMS AT command configures whether voice calls with IMS are available or not.\r\n\r\nExamples:\r\nAT+CAVIMS=1\r\nOK",
"Description:\r\nAT+CBC AT command returns the battery status of the device.Possible values are,\r\n0 MT is powered by the battery\r\n1 MT has a battery connected, but is not powered by it\r\n2 MT does not have a battery connected\r\n3 Recognized power fault, calls inhibited\r\n\r\nExamples:\r\nAT+CBC\r\n+CBC: 0,0\r\n\r\nOK\r\nAT+CBC=?\r\n+CBC: (0-3),(0-100)\r\n\r\nOK",
"Description:\r\nAT+CBCAP AT commands enables reporting of battery capacity level.\r\n\r\nExamples:\r\nAT+CBCAP=1\r\nOK",
"Description:\r\nAT+CBCHG AT command enables reporting upon change in battery charger status\r\n\r\nExamples:\r\nAT+CBCHG=1\r\nOK",
"Description:\r\nAT+CBKLT AT command is used to enable or disable the backlight of the device.\r\n\r\nExamples:\r\nAT+CBKLT=1\r\nOK",
"Description:\r\nAT+CBSD AT command will identify the boundary between a display area and a non-display area of the ME’s (touch) screen.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CBST selects the bearer service of the data call.\r\nPossible values of connection element are,\r\n0 data circuit asynchronous (UDI or 3.1 kHz modem)\r\n1 data circuit synchronous (UDI or 3.1 kHz modem)\r\n2 PAD Access (asynchronous) (UDI)\r\n3 Packet Access (synchronous) (UDI)\r\n4 data circuit asynchronous (RDI)\r\n5 data circuit synchronous (RDI)\r\n6 PAD Access (asynchronous) (RDI)\r\n7 Packet Access (synchronous) (RDI)\r\n\r\nExamples:\r\nAT+CBST?\r\n+CBST: 7,0,1\r\n\r\nOK\r\nAT+CBST=?\r\n+CBST: (0-7,12,14,65,66,68,70,71,75),(0),(0-3)\r\n\r\nOK",
"Description:\r\nAT+CCHC AT command closes the session with UICC.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CCHO At command is used to open a session with UICC so that commmands can be sent over the UICC logical channels.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CCLK AT command sets the clock of the device.\r\n\r\nExamples:\r\nAT+CCLK?\r\n+CCLK: \"09/10/15,19:33:42+00\"",
"Description:\r\nAT+CCWA AT command enables the control of call waiting supplementary service.\r\n\r\nExamples:\r\nAT+CCWA=1\r\nOK",
"Description:\r\nAT+CDIS AT command command is used to write the contents of MT text type display elements.\r\n\r\nExamples:\r\nAT+CDIS?\r\n+CDIS: \"RADIOLINJA\",\"\",\"\",\"Menu\",\"Memory\"\r\nOK",
"Description:\r\nAT+CEAP AT command allows teh device to exchange EAP packets with the UICC.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CECALL initiates eCall to the network.\r\n\r\nExamples:\r\nAT+ecall=2\r\nOK",
"Description:\r\nAT+CEER AT command returns error report for,\r\n- the failure in the last unsuccessful call setup (originating or answering) or in call modification;\r\n- the last call release;\r\n- the last unsuccessful GPRS attach or unsuccessful PDP context activation;\r\n- the last GPRS detach or PDP context deactivation.\r\n\r\nExamples:\r\nAT+CEER\r\n+CEER: 0,0,5,16,normal call clearing\r\n\r\nOK",
"Description:\r\n\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CEREG AT command returns the EPS registration status.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CERP AT command gets the EAP session parameters after +CEAP command has been executed.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CESQ AT command returns signal quality parameters such as channel bit error rate, received signal code power, ratio of the received energy per PN chip and reference signal received quality.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CFCS AT command sets the status of the priority level for fast call set-up stored in the SIM.\r\n\r\nPossible values are\r\n0 disable for fast call set-up\r\n1 enable for fast call set-up\r\n\r\nExamples:\r\nAT+CFCS=1\r\nOK",
"Description:\r\nAT+CFUN AT command sets the level of functionality in the MT. Level \"full functionality\" is where the highest level of power is drawn. \"Minimum functionality\" is where minimum power is drawn.\r\nPossible values are,\r\n0 minimum functionality\r\n1 full functionality\r\n2 disable phone transmit RF circuits only\r\n3 disable phone receive RF circuits only\r\n4 disable phone both transmit and receive RF circuits\r\n\r\nExamples:\r\nFind out what is supported by the device\r\nAT+CFUN=?\r\n+CFUN: (0,1,4),(0-1)\r\n\r\nOK\r\nAbove indicates that devices supports minimum functionality ('0'), Full functionality('1') and ability to disable Rx and Tx path ('4')\r\n\r\n// Disable the Tx and Rx Path\r\nAT+CFUN=4\r\n\r\nOK\r\n\r\nGet the current status\r\nAT+CFUN?\r\n+CFUN: 4\r\n\r\nOK",
"Description:\r\nAT+CGACT AT command is used to activate ot deactivate the PDP context.\r\n\r\nExamples:\r\nAT+CGACT?\r\n+CGACT:1,0\r\nOK\r\nAT+CGACT=0,1\r\nOK",
"Description:\r\nAT+CGANS AT command is used to respond to nework initiated call.\r\n\r\nExamples:\r\nAT+CGANS=1\r\nOK",
"Description:\r\nAT+CGATT AT command is used to attach or detach the device to packet domain service.\r\n\r\nExamples:\r\nCheck the status of Packet service attach. '0' implies device is not attached and '1' implies device is attached.\r\nAT+CGATT?\r\n+CGATT:0\r\nOK\r\n\r\nPerform a GPRS Attach. The device should be attached to the GPRS network before a PDP context can be established\r\nAT+CGATT=1\r\nOK\r\n\r\nPerform a GPRS Detach. This is ensure that that the device doesn't lock up any netwrok resources.\r\nAT+CGATT=0\r\nOK",
"Description:\r\nAT+CGAUTH AT command sets up PDP context authentication parameters such as user name, password and authentication protocol(PAP or CHAP)\r\n\r\nExamples:\r\nAT+CGAUTH=1,1,�TEST�,�123�\r\nOK",
"Description:\r\nAT+CGAUTO AT command configures the device disables or enables an automatic positive or negative response (auto-answer) to the receipt of a NW-initiated Request PDP Context Activation message from the network in UMTS/GPRS.\r\n\r\nExamples:\r\nAT+CGAUTO=1\r\nOK",
"Description:\r\nAT+CGCLASS AT command is used to set the device to operate according to specified GPRS mobile class.\r\n\r\nExamples:\r\nAT+CGCLASS=?\r\n+CGCLASS: (\"A\")\r\nOK",
"Description:\r\nAT+CGCMOD AT command is used to modify the PDP context.\r\n\r\nExamples:\r\nAT+CGCMOD=?\r\n+CGCMOD:0,1\r\nOK",
"Description:\r\nAT+CGCONTRDP AT command returns active PDP parameters such as APN, IP address, subnet mask, gateway addres, primary and secondary DNS address etc.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CGDATA AT command causes the device to establish a connection with the network. Commands following +CGDATA command in the AT command line shall not be processed by the device.\r\n\r\nExamples:\r\nAT+CGDATA=?\r\n+CGDATA:(\"PPP\")\r\nOK\r\nAT+CGDATA=\"PPP\",1\r\nCONNECT",
"Description:\r\nAT+CGDCONT AT commands sets the PDP context parameters such as PDP type (IP, IPV6, PPP, X.25 etc), APN, data compression, header compression etc.\r\n\r\nExamples:\r\nWhat are the supported PDP contexts?\r\nAT+CDGCONT=?\r\n\r\n+CGDCONT: (1-10),(\"IP\"),,,(0-1),(0-1)\r\n+CGDCONT: (1-10),(\"IPV6\"),,,(0-1),(0-1)\r\n\r\nOK\r\n\r\nDefine a PDP Context. First parameter is the Context ID, second is the type of IP connection and third is the APN\r\nAT+CDGCONT=1,\"IP\",\"epc.tmobile.com\"\r\nOK\r\n\r\nGet the list of currently defined PDP Contexts\r\nAT+CDGCONT?\r\n\r\n+CGDCONT: 1,\"IP\",\"epc.tmobile.com\",\"0.0.0.0\",0,0\r\n+CGDCONT: 2,\"IP\",\"isp.cingular\",\"0.0.0.0\",0,0\r\n+CGDCONT: 3,\"IP\",\"\",\"0.0.0.0\",0,0\r\n\r\nOK",
"Description:\r\nAT+CGDEL AT command removes the non active PDP context data.\r\n\r\nExamples:\r\nAT+CGDEL=1\r\nOK",
"Description:\r\nAT+CGDSCONT AT command sets PDP context parameter values for a secondary PDP connection.\r\n\r\nExamples:\r\nAT+CGDSCONT=2,1\r\nOK",
"Description:\r\nAT+CGEQMIN AT command sets the minimum acceptable Quality of Service parameters for UMTS connections.\r\n\r\nExamples:\r\nAT+CGEQMIN?\r\n+CGEQMIN;\r\nOK",
"Description:\r\nAT+CGEQREQ AT command configures the UMTS Qualcity of serice parameters such as traffic class, maximum bitrates, guaranteed bitrates, maximum SDU size, SDU error ratio, residual bit error rate, transfer delay etc.\r\n\r\nExamples:\r\nAT+CGQREQ=?\r\n+CGQREQ: \"IP\",(0-3),(0-4),(0-5),(0-9),(0-18,31)\r\n+CGQREQ: \"PPP\",(0-3),(0-4),(0-5),(0-9),(0-18,31)\r\nOK",
"Description:\r\nAT+CGEREP AT command enables or disables sending of unsolicited error codes.\r\n\r\nExamples:\r\nAT+CGEREP=?\r\n+CGEREP: (0-2),(0-1)\r\nOK",
"Description:\r\nAT+CGLA AT command allows a direct control of the currently selected UICC by a distant application on the TE.\r\n\r\nExamples:\r\n",
"Description:\r\nThis AT command returns information about device manufacturer.\r\n\r\nExamples:\r\nAT+CGMI\r\nManufacturer ABC\r\nOK",
"Description:\r\nThis AT command returns information about the model of the device.\r\n\r\nExamples:\r\nAT+CGMM\r\n3G HSPA+ Module\r\nOK",
"Description:\r\nThis AT command returns the revision information of the mobile termina.\r\n\r\nExamples:\r\nAT+CGMR\r\n3.5.2\r\nOK",
"Description:\r\nAT+CGPADDR AT command returns the IP address(es) of the PDP context(s).\r\n\r\nExamples:\r\nAT+CGPADDR =?\r\n+CGPADDR: ( 1)\r\nOK\r\nAT+CGPADDR=1\r\n+CGPADDR:1,\"0.0.0.0\"\r\nOK",
"Description:\r\nAT+CGPIAF AT command sets the format to print IPV6 address parameters of other AT commands.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CGQMIN AT command sets the minimum accepted profile for quality of service parameters such as precedence, delay, reliability, peak throughput and mean throughput.\r\n\r\nExamples:\r\nAT+CGQMIN?\r\n+CGQMIN: 1,0,0,0,0,0",
"Description:\r\nAT+CGREQ AT command sets the Quality of service parameters of a PDP connection such as delay, reliability, peak throughput, mean throughput etc.\r\n\r\nExamples:\r\nAT+CGQREQ=1,0,0,3,0,0\r\nOK",
"Description:\r\nAT+CGREG AT command returns the registration status of the device.\r\n\r\nExamples:\r\nAT+CGREG?\r\n+CGREG: 0,0\r\nOK",
"Description:\r\nAT+CGSCONTRDP AT command returns the cid, bearer id information about the secondary PDP connection.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CGSMS AT command specifies the service or service preference that the MT will use to send MO SMS messages.\r\n\r\nExamples:\r\nAT+CGSMS=?\r\n+CGSMS:(0-3)\r\nOK",
"Description:\r\nThis command returns the IMEI (International Mobile station Equipment Identity) of the mobile terminal.\r\n\r\nExamples:\r\nAT+GSN\r\n123456789 887\r\nOK",
"Description:\r\nAT+CHUP command causes the mobile terminal to hangup the current call.\r\n\r\nExamples:\r\nAT+CHUP\r\nOK",
"Description:\r\nThis AT command returns IMSI (International Mobile Subscriber Identity) of the mobile terminal.\r\n\r\nExamples:\r\nAT+CIMI?\r\n123456789\r\nOK",
"Description:\r\nAT+CIND AT command sets the values of device indicators. Possibel values are,\r\n\"battchg\" battery charge level (0 5)\r\n\"signal\" signal quality (0 5)\r\n\"service\" service availability (0 1)\r\n\"sounder\" sounder activity (0 1)\r\n\"message\" message received (0 1)\r\n\"call\" call in progress (0 1)\r\n\"vox\" transmit activated by voice activity (0 1)\r\n\"roam\" roaming indicator (0 1)\r\n\"smsfull\" a short message memory storage in the MT has become full and a short message has been rejected (2), has become full (1), or memory locations are available (0); i.e. the range is (0 2)\r\n\"inputstatus\" keypad/touch screen status (0-1)\r\n\r\nExamples:\r\nAT+CIND?\r\n+CIND: 1,0,0,0,0,1,0,0,0,3,1,0,0,0,5\r\nOK",
"Description:\r\nAT+CIPCA AT command controls whether an initial PDP context shall be established automatically following an attach procedure when the UE is attached to GERAN or UTRAN RATs.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CIREG AT command returns IMS registration status.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CISRVCC AT command enables reporting of SRVCC handover and d IMSVOPS (IMS Over PS) sessions.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CISRVCC AT command sets the support status of SVRCC feature in the device.\r\n\r\nExamples:\r\nAT+CISRVCC=1\r\nOK",
"Description:\r\nAT+CKPD AT command emulates the keystroke on the device.\r\n\r\nExamples:\r\nAT+CKPD=9,0,0\r\nOK",
"Description:\r\nAT+CLAC AT command lists all AT commands supported by the mobile.\r\n\r\nExamples:\r\nAT+CLAC?\r\nAT+CACM\r\nAT+CAMM\r\nAT+CAOC\r\nAT+CBC\r\nAT+CBST\r\nAT+CCFC\r\nAT+CCUG\r\nAT+CCWA\r\nAT+CCWE\r\nAT+CEER\r\nAT+CFUN\r\nAT+CGACT\r\nAT+CGANS\r\nAT+CGATT\r\nAT+CGAUTO\r\nAT+CGCLASS\r\nAT+CGDATA\r\nAT+CGDCONT\r\nAT+CGEREP\r\nAT+CGMI\r\nAT+CGMM\r\nAT+CGMR\r\nAT+CGPADDR\r\nAT+CGQMIN\r\nAT+CGQREQ\r\nAT+CGREG\r\nAT+CGSMS",
"Description:\r\nAT+CLAE AT command is used to enable/disable unsolicited result code when the language in the device is changed.\r\n\r\nExamples:\r\nAT+CLAE=1\r\nOK",
"Description:\r\nAT+CLAN AT comamnd is used to set the language on the device. Possible values are,\r\n\"AUTO\" Read language from SIM-card /UICC. \"Auto\" is not returned by the read-command.\r\n\"sw\" Swedish\r\n\"fi\" Finnish\r\n\"da\" Danish\r\n\"no\" Norwegian\r\n\"de\" German\r\n\"fr\" French\r\n\"es\" Spanish\r\n\"it\" Italian\r\n\"en\" English\r\n\r\nExamples:\r\nAT+CLAN=\"en\"\r\nOK",
"Description:\r\nExecute command is used to lock, unlock or interrogate a MT or a network facility. Password is normally needed to do such actions.\r\n\r\nExamples:\r\nAT+CLCK=\"OI\",2\r\n+CLCK: 0,7\r\nOK\r\nAT+CLCK=\"OI\",1,\"1234\"\r\nOK",
"Description:\r\nThis command refers to the GSM/UMTS supplementary service CLIP (Calling Line Identification Presentation) that enables a called subscriber to get the calling line identity (CLI) of the calling party when receiving a mobile terminated call. Set command enables or disables the presentation of the CLI at the TE.\r\n\r\nExamples:\r\nAT+CLIP=1\r\nOK",
"Description:\r\nAT+CMAR AT command is used to reset the device to default values. Phone lock code required for this command.\r\n\r\nExamples:\r\nAT+CMAR=\"lockcode\"\r\nOK",
"Description:\r\nAT+CMEE AT command enable or disable the use of result code\r\n+CME ERROR: as an indication of an error relating to the functionality of the MT.\r\n\r\nExamples:\r\nAT+CMEE=1\r\nOK",
"Description:\r\nSet command selects the call mode of further dialling commands (D) or for next answering command (A). Possible values,\r\n\r\n0 single mode\r\n\r\n1 alternating voice/fax (teleservice 61)\r\n2 alternating voice/data (bearer service 61)\r\n3 voice followed by data (bearer service 81)\r\n\r\nExamples:\r\nAT+CMOD=? +CMOD: (0-3)\r\n\r\nOK",
"Description:\r\nAT+CMOLR AT command is used to get the location information from the device. Location information is available through NMEA strings or GAD shapes. Location information can be requested through different methods such as Assisted GPS, Assisted GANSS, basic self location etc.\r\n\r\nExamples:\r\nAT+CMOLR?\r\n+CMOLRN: \"$GPRMC,235947.000,V,0000.0000,N,00000.0000,E,,,041299,,*1D&\"",
"Description:\r\nAT+CMOLRE AT command disables or enables the verbose format of unsolicited result code.\r\n\r\nExamples:\r\nAT+CMLORE=1\r\nOK",
"Description:\r\nAT+CMUT AT command is used to enable/disbale muting of voice on the device.\r\n\r\nExamples:\r\nAT+CMUT=1\r\nOK",
"Description:\r\nThis AT command enable/disable multiplexing protocol control channel. If no parameters are passed, default values are used.\r\n\r\nExamples:\r\nAT+CMUX=?\r\n+CMUX: (1),(0),(1-5),(10-100),(1-255),(0-100),(2-255),(1-255),(1-7)\r\n\r\nOK",
"Description:\r\nAT+CNAP AT command enables the called subscriber to get the calling name identificaiton of the calling subscriber.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CNMPSD AT command indicates that no application on the MT is expected to exchange data.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CNUM AT command returns the subscriber phone number.\r\n\r\nExamples:\r\nAT+CNUM\r\n+CNUM: ,\"0123456789\",122\r\n\r\nOK",
"Description:\r\nAT+COLP enables the calling subscriber to get the connected line identity (COL) of teh called party.\r\n\r\nExamples:\r\nAT+COPL=1\r\nOK",
"Description:\r\nAT+COPN AT command returns the list of operators from the mobile terminal.\r\n\r\nExamples:\r\nAT+COPN\r\n\r\n+COPN: \"20205\",\"vodafone GR\"\r\n+COPN: \"20209\",\"GR Q-TELECOM\"\r\n+COPN: \"20210\",\"TIM GR\"",
"Description:\r\nAT+COPS AT command forces the mobile terminal to select and register the GSM/UMTS/EPS network.\r\nPossible values for mode are,\r\n0 automatic ( field is ignored)\r\n1 manual ( field shall be present, and optionally)\r\n2 deregister from network\r\n3 set only (for read command +COPS?), do not attempt registration/deregistration ( and fields are ignored); this value is not applicable in read command response\r\n4 manual/automatic ( field shall be present); if manual selection fails, automatic mode (=0) is entered\r\n\r\nPossible values for access technology,\r\n0 GSM\r\n1 GSM Compact\r\n2 UTRAN\r\n3 GSM w/EGPRS\r\n4 UTRAN w/HSDPA\r\n5 UTRAN w/HSUPA\r\n6 UTRAN w/HSDPA and HSUPA\r\n7 E-UTRAN\r\n\r\nExamples:\r\nAT+COPS=?\r\n+COPS: (2,\"RADIOLINJA\",\"RL\",\"24405\"),(0,\"TELE\",\"TELE\",\"24491\")\r\nOK\r\nAT+COPS?\r\n+COPS: 0,0,\"RADIOLINJA\"\r\nOK\r\nAT+COPS=1,0,\"TELE\"\r\n+CME ERROR: 3",
"Description:\r\nAT+CPAS AT command returns of the module device status. Possible values are,\r\n0 ready\r\n1 unavailable\r\n2 unknown\r\n3 ringing\r\n4 call in progress\r\n5 asleep\r\n\r\nExamples:\r\nAT+CPAS\r\n+CPAS: 0\r\n\r\nOK\r\nAT+CPAS=?\r\n+CPAS: (0-5)\r\n\r\nOK",
"Description:\r\nAT+CPBF AT command returns phobebook entries from the SIM based on the search parameter.\r\n\r\nExamples:\r\nTo search a phone book with a name,\r\n\r\nAT+CPBF=\"Daniel\"\r\n\r\n+CPBF: 1,\"1391812\",129,\"Daniel\",\"\",0\r\n\r\nOK",
"Description:\r\nAT+CPBR AT command returns entries from the device's phonebook.\r\n\r\nExamples:\r\nRead all entries but only the ones set are returned\r\nAT+CPBR=1,99 \r\n+CPBR: 1,\"931123456\",129,\"Ilkka\"\r\n+CPBR: 2,\"9501234567\",129,\"\"\r\n+CPBR: 4,\"901234567\",129,\"Hesari\"\r\nOK\r\n\r\nRead the phone book entry 1\r\nAT+CPBR=1 \r\n+CPBR: 1,\"931123456\",129,\"Ilkka\"",
"Description:\r\nAT+CPBW AT command writes an entry in to the SIM's phonebook.\r\n\r\nExamples:\r\nWhat is supported for the phone book write command?\r\nAT+CPBW=?\r\n+CPBW: (1-254),40,(129,145,161,177),20\r\n\r\nOK\r\n\r\nWrite a phonebook entry to the next available location\r\nAT+CPBW=,�6187759088\",129,�Adam�\r\n\r\nOK",
"Description:\r\nAT+CPIN AT command sets the password of teh mobile device.\r\n\r\nExamples:\r\nAT+CPIN?\r\n+CPIN:READY\r\nOK",
"Description:\r\nAT+CPINR AT command returns the number of remaining PIN retries.\r\n\r\nExamples:\r\nAT+CPINR=\"SIM*\"\r\n+CPINR: SIM PIN,2,4\r\n+CPINR: SIM PUK2,4\r\n+CPINR: SIM PIN22,4\r\n+CPINR: SIM PUK2,2,4",
"Description:\r\nAT+CPLS AT command is used to select the preferred PLMN\r\nlist. Possible values are,\r\n\r\n0 User controlled PLMN selector with Access Technology EFPLMNwAcT, if not found in the SIM/UICC then PLMN preferred list EFPLMNsel (this file is only available in SIM card or GSM application selected in UICC)\r\n1 Operator controlled PLMN selector\r\n2 HPLMN selector with Access Technology EFHPLMNwAcT\r\n\r\nExamples:\r\nAT+CPLS=1\r\nOK",
"Description:\r\nAT+CPNET AT command is used to set the preferred network. Possible values are,\r\n0 GERAN/UTRAN/E-UTRAN shall be used. The terminal uses GERAN/UTRAN/E-UTRAN coverage only.\r\n1 GAN shall be used. The terminal used GAN coverage only.\r\n2 GERAN/UTRAN/E-UTRAN preferred. The terminal prefers to stay in GERAN/UTRAN/E-UTRAN rather than GAN.\r\n3 GAN preferred. The terminal prefers to stay in GAN rather than GERAN/UTRAN/E-UTRAN.\r\n\r\nExamples:\r\nAT+CPNET=1\r\nOK",
"Description:\r\nAT+CPOL AT command is used to set the PLMN selector with Access Technology lists in the SIM card.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CPOS AT command causes the device to enter a transparent mode for sending XML formatted data.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CPOSR AT command enables or disables the sending of unsolicited positioning data in XML format.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CPSB AT command returns the current packet switch bearer type.Possible values are GPRS, EGPRS, Non-HSUPA, HSUPA, EPS\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CPWC AT command is used to set the power class of the device.\r\n\r\nExamples:\r\nAT+CPWC=?\r\n+CPWC: (0,(0,4,5)),(1,(0-2))\r\nOK",
"Description:\r\nAT+CPWD AT command sets a new password for the facility lock function.\r\n\r\nExamples:\r\nAT+CPWD=\"P2\",\"OLD\",\"NEW\"\r\nOK",
"Description:\r\nAT+CR AT command enables or disables service repoting of the mobile terminal. Set 'mode' to '0' to disable and '1' to enable service reporting.\r\n\r\nExamples:\r\nAT+CR?\r\n+CR: 0\r\nOK\r\nAT+CR=?\r\n+CR: (0,1)\r\nOK",
"Description:\r\nSet command controls whether or not the extended format of incoming call indication or GPRS network request for PDP context activation or notification for VBS/VGCS calls is used.\r\n\r\nExamples:\r\nAT+CRC=1\r\nOK\r\n\r\n+CRING: VOICE",
"Description:\r\nAT+CREG AT command gives information about the registration status and access technology of the serving cell.\r\n\r\nPossible values of registration status are,\r\n0 not registered, MT is not currently searching a new operator to register to\r\n1 registered, home network\r\n2 not registered, but MT is currently searching a new operator to register to\r\n3 registration denied\r\n4 unknown (e.g. out of GERAN/UTRAN/E-UTRAN coverage)\r\n5 registered, roaming\r\n6 registered for \"SMS only\", home network (applicable only when indicates E-UTRAN)\r\n7 registered for \"SMS only\", roaming (applicable only when indicates E-UTRAN)\r\n8 attached for emergency bearer services only (see NOTE 2) (not applicable)\r\n9 registered for \"CSFB not preferred\", home network (applicable only when indicates E-UTRAN)\r\n10 registered for \"CSFB not preferred\", roaming (applicable only when indicates E-UTRAN)\r\n\r\nPossible values for access technology are,\r\n0 GSM\r\n1 GSM Compact\r\n2 UTRAN\r\n3 GSM w/EGPRS\r\n4 UTRAN w/HSDPA\r\n5 UTRAN w/HSUPA\r\n6 UTRAN w/HSDPA and HSUPA\r\n7 E-UTRAN\r\n\r\nExamples:\r\n//enable +CREG: unsolicited result code\r\nAT+CREG=1\r\nOK\r\n\r\n//MT is registered in home PLMN\r\nAT+CREG?\r\n+CREG: 1,1 \r\nOK\r\n\r\n//Registration is denied\r\nAT+CREG?\r\n+CREG: 3,1 \r\nOK\r\n\r\n//MT is registered in home PLMN\r\nAT+CREG?\r\n+CREG: 1,1 \r\nOK\r\n\r\n//Registered for SMS only\r\nAT+CREG?\r\n+CREG: 6,1 \r\nOK",
"Description:\r\nAT+CRLA At command provides limited control of the currently selected UICC by a distant application on the TE.\r\n\r\nExamples:\r\n",
"Description:\r\nAT+CRLP sets the Radio Link Parameter (RLP) parameters.\r\n\r\nExamples:\r\nAT+CRLP?\r\n+CRLP: 61,61,48,6\r\nOK\r\nAT+CRLP=?\r\n+CRLP: (0-61),(0-61),(39-255),(1-255)\r\nOK",
"Description:\r\nAT+CRMC AT command sets the ring melody and volume.\r\n\r\nExamples:\r\nAT+CRMC=2,3\r\nOK",
"Description:\r\nAT+CRMP AT command is used to tell the device playback a specific ring type.\r\n\r\nExamples:\r\nAT+CRMP=1\r\nOK",
"Description:\r\nAT+CRSL AT command is used to set the ringer sound level of the device.\r\n\r\nExamples:\r\nAT+CSRL=5\r\nOK",
"Description:\r\nAT+CRSM AT comman provides restricted access to the SIM.\r\n\r\nExamples:\r\nAT+CRSM=176,28512,0,0,123\r\nSTR=`AT+CRSM=176,28512,0,0,123'\r\nRSTR=`+CRSM: 148,4,00000000000000000000000000000000000000000000'",
"Description:\r\nAT+CSCC AT command is used to enable/disable access to protected commands within the device.\r\n\r\nExamples:\r\nAT+CSCC=1\r\nOK",
"Description:\r\nAT+CSCON AT command returns the signalling state of the device. Possible values are,\r\n0 UTRAN URA_PCH state\r\n1 UTRAN Cell_PCH state\r\n2 UTRAN Cell_FACH state\r\n3 UTRAN Cell_DCH state\r\n\r\nExamples:\r\n",
"Description:\r\nThis AT command selects the character set of the mobile equipment. Some possible values are \"GSM\", \"HEX\".\"IRA\", \"PCDN\", \"UCS2\",\"UTF-8\" etc.\r\n\r\nExamples:\r\nAT+CSCS=GSM\r\nOK",
"Description:\r\nAT+CSDF sets the date format of the device. Possible values are,\r\n\r\n1 DD-MMM-YYYY\r\n\r\n2 DD-MM-YY\r\n\r\n3 MM/DD/YY\r\n\r\n4 DD/MM/YY\r\n\r\n5 DD.MM.YY\r\n\r\n6 YYMMDD\r\n\r\n7 YY-MM-DD\r\n\r\n8-255 Manufacturer specific\r\n\r\nExamples:\r\nAT+CSDF=2\r\nOK",
"Description:\r\nAT+CSGT AT command sets the greeting text on the device.\r\n\r\nExamples:\r\nAT+CGST=\"Hello World\",1\r\nOK",
"Description:\r\nAT+CSIL AT command enables/disables the silent mode. Possible values are,\r\n\r\n0 Silent mode off\r\n\r\n1 Silent mode on\r\n\r\nExamples:\r\nAT+CSIL=1\r\nOK",
"Description:\r\nAT+CSIM AT command sends commands to the SIM on the device.\r\n\r\nExamples:\r\nAT+CSIM=54,\"008800812210.....\" // USIM commands\r\n+CSIM: 4,6985E\r\n\r\nAT+CSIM=46,\"008800801110FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00\" // USIM AUTHENTICATE command in GSM Context. 0xFF bytes are RAND.\r\n+CSIM: 32,\"04EEEEEEEE08FFFFFFFFFFFFFFFF9000\" // Expected response. 0xEE bytes",
"Description:\r\nSet command selects the bearer or teleservice to be used when mobile terminated single numbering scheme call is established\r\n\r\nPossible values are,\r\n\r\n0 voice\r\n\r\n1 alternating voice/fax, voice first (TS 61)\r\n\r\n2 fax (TS 62)\r\n\r\n3 alternating voice/data, voice first (BS 61)\r\n\r\n4 data\r\n\r\n5 alternating voice/fax, fax first (TS 61)\r\n\r\n6 alternating voice/data, data first (BS 61)\r\n\r\n7 voice followed by data (BS 81)\r\n\r\nExamples:\r\nAT+CSNS=?\r\n+CSNS: (0-7)\r\n\r\nOK",
"Description:\r\nAT+CSO AT command is used to set or read the orientation of the screen.\r\n\r\nExamples:\r\nAT+CSO=0\r\nOK",
"Description:\r\nAT+CSQ AT command returns the signal strength of the device.\r\nPossible values are,\r\n0 113 dBm or less\r\n1 111 dBm\r\n2...30 109... 53 dBm\r\n31 51 dBm or greater\r\n99 not known or not detectable\r\n\r\nExamples:\r\nAT+CSQ?\r\n+CSQ:18,99\r\n\r\nAT+CSQ\r\n\r\n+CSQ: 4,0\r\n\r\nOK\r\n",
"Description:\r\nAT+CSS AT command will get the size (in pixels) of teh device's screen.\r\n\r\nExamples:\r\n",
"Description:\r\nSet command selects the type of number for further dialling commands (D) according to GSM/UMTS specifications.\r\n\r\nExamples:\r\nAT+CSTA?\r\n+CSTA: 129\r\nOK\r\nAT+CSTA=?\r\n+CSTA: (129,145)\r\nOK",
"Description:\r\nAT+CSTF sets the time format. Possible values are,\r\n\r\n: integer type\r\n\r\n1 HH:MM (24 hour clock)\r\n\r\n2 HH:MM a.m./p.m.\r\n\r\n3-7 Manufacturer specific\r\n\r\nExamples:\r\nAT+CSTF=1\r\nOK",
"Description:\r\nAT+CSUS AT command selects the SIM/UICC slot.\r\n\r\nExamples:\r\nAT+CSUS=1\r\nOK",
"Description:\r\nAT+CSVM AT command is used to set the number to the voicemail server.\r\n\r\nExamples:\r\nAT+CSVM?\r\n+CSVM:1,\"660\",129\r\nOK",
"Description:\r\nAT+CFTR At command causes the incoming calls to be forwarded to a specified number.\r\n\r\nExamples:\r\nAT+CFTR=\"1234567890\"\r\nOK",
"Description:\r\nAT+CTSA AT command is used to emulate a touch screen action on the device.\r\n\r\nExamples:\r\nAT+CTSA=1,25,45\r\nOK",
"Description:\r\nAT+CTZR AT command enables reporting of timezone changes.\r\n\r\nExamples:\r\nAT+CTZR=1\r\nOK",
"Description:\r\nAT+CTZU AT command enable/disable automatic timezone update on the device.\r\n\r\nExamples:\r\nAT+CTZU=1\r\nOK",
"Description:\r\nAT+CUAD AT command is used to get the list applications that are available on the UICC.\r\n\r\nExamples:\r\n",
"Description:\r\nSet command selects whether ATH or \"drop DTR\" shall cause a voice connection to be disconnected or not.\r\n\r\nExamples:\r\nAT+CVHU=2\r\nOK",
"Description:\r\nAT+CVIB AT command is used to enable/disable the vibrator feature of the device.\r\n\r\nExamples:\r\nAT+CVIB=1\r\nOK",
"Description:\r\nThis AT command sets the mode for mobile originated voice calls.\r\n\r\nPossible values are,\r\n\r\nCS_ONLY\r\n\r\nVOIP_ONLY\r\n\r\nCS_PREFERRED\r\n\r\nVOIP_PREFERRED\r\n\r\nExamples:\r\nAT+CVMOD=0\r\nOK",
"Description:\r\nAT+FCLASS AT command sets the device for different modes. Possible values are,\r\n0 data\r\n1 fax class 1 (TIA 578 A)\r\n1.0 fax class 1 (ITU T Recommendation T.31 [11])\r\n2 fax (manufacturer specific)\r\n2.0 fax class 2 (ITU T Recommendation T.32 [12] and TIA 592)\r\n3...7 reserved for other fax modes\r\n8 voice\r\n9...15 reserved for other voice modes\r\n16..79 reserved\r\n80 VoiceView (Radish)\r\n81..255 reserved\r\n\r\nExamples:\r\nAT+FCLASS=?\r\n0,1,2,2.0",
"Description:\r\nAT+HTTPACTION AT Command is used perform HTTP actions such HTTP GET or HTTP post. AT+HTTPACTION is a proprietary Simcom AT command.\r\nThe format for AT+HTTPACTION is,\r\nAT+HTTPACTION=Method,StatusCode,DataLen\r\n\r\nFor Method, possible values are,\r\n0:READ\r\n1:POST\r\n2:HEAD\r\n\r\nExamples:\r\nAT+HTTPACTION=0\r\nOK",
"Description:\r\nAT+HTTPINIT AT command initializes the HTTP service. This is a proprietary Simcom AT command.This command should be sent first before starting HTTP service.\r\n\r\nExamples:\r\nAT+HTTPINIT\r\nOK",
"Description:\r\nAT+HTTPPARA AT command sets up HTTP parameters for the HTTP call. This is a proprietary AT command from SIMCOM.\r\n\r\nThe format is,\r\nAT+HTTPPARA=,\r\n\r\nThe parameters that can be set with AT+HTTPPARA AT command are,\r\nCID, URL, proxy server, port of HTTP proxy server, conetne\r\n\r\nExamples:\r\nAT+HTTPPARA=\"CID\",1\r\nOK\r\nAT+HTTPPARA=\"URL\",%22http://www.cnn.com/%22\r\nOK\r\nAT+HTTPPARA=\"BREAK\",2000\r\nOK",
"Description:\r\nAT+HTTPREAD AT command is used to read the HTTP server response. Prior to this AT command, AT+HTTPACTION=0 ot AT+HTTPDATA should be sent. AT+HTTPREAD is a Simcom proprietary AT command.\r\n\r\nThe format for AT+HTTPREAD is,\r\nAT+HTTPREAD=start_address,byte_size\r\n\r\nExamples:\r\nAT+HTTPREAD\r\nOK",
"Description:\r\nAT+HTTPTERM terminates the HTTP session.\r\n\r\nExamples:\r\nAT+HTTPTERM\r\nOK",
"Description:\r\nAT+IPR sets the baud rate of the serial interface of the device. Although many manufacturers support this AT command, the implementation is manufacturer specific. \r\n\r\nSIMCOM's supports settign values as follows,\r\n0 - Auto-bauding\r\nOther possible values are 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200\r\n\r\nExamples:\r\nAT+IPR=0\r\nOK\r\n\r\nAT+IPR=115200\r\nOK",
"Description:\r\nAT+LVL AT command sets the loudspeaker volume of the device.\r\n\r\nExamples:\r\nAT+CLVL=4\r\nOK",
"Description:\r\nPCCA STD-101 command to select the cellular network (Wireless Data Service : WDS). Possible values are,\r\n\r\n12 GSM Digital Cellular Systems (GERAN only)\r\n\r\n22 UTRAN only\r\n\r\n25 3GPP Systems (GERAN, UTRAN and E-UTRAN)\r\n\r\n28 E-UTRAN only\r\n\r\n29 GERAN and UTRAN\r\n\r\n30 GERAN and E-UTRAN\r\n\r\n31 UTRAN and E-UTRAN\r\n\r\nExamples:\r\nAT+WS46=?\r\n+WS46: (12)\r\n\r\nOK",
"Description:\r\nATA command answers an incoming voice call.\r\n\r\nExamples:\r\nRING\r\nRING\r\n\r\nATA\r\nOK",
"Description:\r\nATD AT command dials the phone number. Generally this AT command is used for dialling the voice call.\r\n\r\nWhen the call fails, the following responses can be received from the device,\r\n1. Connection Failure - NO CARRIER or BUSY or NO ANSWER\r\n2. General Failure - ERROR\r\n3. Security reason (such as SIM not present) - OPERATION NOT\r\nALLOWED\r\n4. Unknown reason - UNKNOWN CALLING ERROR\r\n\r\nExamples:\r\nATD1234568876;\r\nOK",
"Description:\r\nATDL AT command dials the last dialled number.\r\n\r\nExamples:\r\nATDL\r\nOK",
"Description:\r\nATH AT command hangs up the call. This command is used to end the voice call.\r\n\r\nExamples:\r\nATH\r\nNO CARRIER\r\nOK" };
public TwoWaySerialComm2 mySerial1;
public JPanel panel;
public JPanel panel_1;
public JScrollBar scrollBar;
public JScrollBar scrollBar_1;
public int winflag = 1;
public JTextPane textArea_1;
public JComboBox comboBox_2;
public JLabel lblSelectAtCommand;
public JTextPane textArea_2;
public JSeparator separator_1;
public JTabbedPane tabbedPane_1;
public JTabbedPane tabbedPane;
public JPanel panel_2;
public JLabel lblSelectScript;
public JComboBox comboBox_3;
public JTextPane textArea_3;
public JButton btnRunScript;
public JButton btnClear_1;
public JPanel panel_3;
public JButton btnDeviceInfo;
public JButton btnSignalStrength;
public JButton btnRegistrationStatus;
public JButton btnOperatorInfo;
public JButton btnSimStatus;
public JButton btnTechnologyCapability;
public JButton btnDeviceCapability;
public JButton btnAvaialbleNetworks;
public JButton btnDateTime;
public JButton btnAudioSettings;
public JButton btnClear_2;
public JTextField txtAtCommandTester;
public JPanel panel_4;
public JButton btnSaveScript;
public JButton btnLoadScript;
public JButton btnSaveLog;
private JTextField filename = new JTextField();
private JTextField dir = new JTextField();
public ATCommandTester.OpenL fileOpener = new ATCommandTester.OpenL();
public ATCommandTester.SaveL fileSaver = new ATCommandTester.SaveL();
public JButton btnSaveLog_1;
public JButton btnSaveLog_2;
public JPanel panel_5;
public JPanel panel_6;
public JPanel panel_7;
public JPanel panel_8;
public JPanel panel_9;
public JPanel panel_10;
public JPanel panel_11;
public JPanel panel_12;
public JLabel lblSuggestionsquestions;
public JList list;
public JTable table;
public JButton btnGetPdpContexts;
public JButton btnConnect_1;
public int reg_status;
public JButton btnPdpDisconnect;
public JButton btnPdpEdit;
public JButton btnPdpAdd;
public JLabel lblCallNumber;
public JTextField textField_1;
public JButton btnDial;
public JPanel panel_13;
public JLabel lblPhoneNumber;
public JTextField textField_2;
public JButton btnShowPhoneNumber;
public JPanel panel_14;
public JTextPane txtrAtCommandTester;
public JPanel panel_15;
public JButton btnHangUp;
public JButton btnHangUp_1;
public JLabel lblPhoneNumber_1;
public JTextField textField_3;
public JLabel lblMessage;
public JTextPane textArea_9;
public JScrollPane scrollPane_1;
public JButton btnSendSms;
public JButton btnShowPdu;
public JButton btnShowTextFormat;
public JTable table_1;
public JPanel panel_16;
public JButton btnSaveLog_3;
public JButton btnClear_3;
public JButton btnSaveLog_4;
public JButton btnClear_4;
public JButton btnSaveLog_5;
public JButton btnClear_5;
public JPanel panel_17;
public JTable table_2;
public JButton btnFindNetworks;
public JButton btnSelectNetwork;
public JButton btnSaveLog_6;
public JButton btnClear_6;
public JPanel panel_18;
public JTable table_3;
public JButton btnReadPhonebook;
public JButton btnAddEntry;
public JButton btnDeleteEntry;
public JButton btnEditEntry;
public JPanel panel_19;
public JPanel panel_20;
public JPanel panel_21;
public JPanel panel_22;
public JTable table_4;
public JButton btnGetBearerProfiles;
public JButton btnEdit;
public JButton btnOpen;
public JButton btnClose;
public JButton btnQuery;
public JLabel lblBearerCid;
public JLabel lblUrl;
public JTextField textField_5;
public JComboBox comboBox_4;
public JTextPane textArea_13;
public JScrollPane scrollPane_9;
public JButton btnGet;
public JButton btnPost;
public JTextPane textPane;
public JScrollPane scrollPane_10;
public JLabel lblFtpServerAddress;
public JLabel lblUserName;
public JLabel lblPassword;
public JTextField textField_4;
public JTextField textField_6;
public JTextField textField_7;
public JLabel lblBearerId;
public JComboBox comboBox_5;
public JTextArea textArea_14;
public JScrollPane scrollPane_12;
public JButton btnFtpGet;
public JLabel lblFileName;
public JTextField textField_8;
public JLabel lblDirectory;
public JTextField textField_9;
public JButton btnFtpPut;
public JLabel lblDeviceName;
public JLabel lblManufacturer;
public JLabel lblStatus;
public JPanel panel_23;
public JLabel lblNotAvailable;
public JLabel lblNotAvailable_1;
public JLabel lblNotConnected;
public JPanel panel_24;
public JButton btnGpsOn;
public JButton btnGpsOff;
public JButton btnGpsReset;
public JButton btnGpsReset_1;
public JButton btnGpsStatus;
public JButton btnGpsNmeaOn;
public JButton btnGpsNmeaOff;
public JLabel lblNmeaPortSpeed;
public JComboBox comboBox_6;
public JButton btnSet;
public JPanel panel_25;
public JTextField textField_10;
public JLabel lblLatitude;
public JLabel lblLongitude;
public JLabel lblAltitude;
public JLabel lblTimeToFirst;
public JLabel lblNumSatellites;
public JLabel lblSpeed;
public JTextField textField_11;
public JLabel lblCourse;
public JTextField textField_12;
public JTextField textField_13;
public JTextField textField_14;
public JTextField textField_15;
public JTextField textField_16;
public JButton btnNewButton;
public JButton btnShowMap;
public JPanel panel_26;
public JTextField textField_17;
public JLabel lblTime;
public JTextField textField_18;
public JPanel panel_27;
public JLabel lblServerIp;
public JTextField txtWwwmmsupportnet;
public JLabel lblPort_1;
public JTextField textField_20;
public JButton btnConnect_2;
public JButton btnDisconnect_1;
public JPanel panel_28;
public JTextArea txtrGetHttpwwwmmsupportnetmmsupporttcpudptestphpHttp;
public JScrollPane scrollPane_15;
public JLabel lblClientData;
public JButton btnSend;
public JRadioButton rdbtnTcp;
public JRadioButton rdbtnUdp;
public JPanel panel_29;
public JLabel lblApn;
public JTextField textField_21;
public JTextPane textPane_4;
public URLLabel lblHowToUse;
public JButton btnPostAQuestion;
public JPanel panel_33;
public JComboBox comboBox_8;
public JPanel panel_34;
public JPanel panel_30;
public URLLabel module_select_label;
public JPanel panel_31;
public JComboBox comboBox_7;
public JPanel panel_32;
public URLLabel http_select_label;
public JPanel panel_35;
public JComboBox comboBox_9;
public JPanel panel_36;
public URLLabel lblFtpTestingFor;
public JPanel panel_37;
public JComboBox comboBox_10;
public URLLabel lblGpsTestingFor;
public JPanel panel_38;
public JPanel panel_39;
public JLabel label_1;
public JTextField textField_22;
public JButton button;
public JButton button_1;
public JLabel lblNewLabel;
public JTable table_5;
public JButton btnRefresh;
public JButton btnActivate;
public JButton btnDeactivate;
public JLabel lblConnid;
public JLabel lblProtocol;
public JLabel lblPort_2;
public JLabel lblIpAddress;
public JList list_1;
public JComboBox comboBox_11;
public JComboBox comboBox_12;
public JTextField txtWwwgooglecom;
public JTextField textField_23;
public JButton btnOpen_1;
public JButton btnNewButton_1;
public JLabel lblMode;
public JComboBox comboBox_13;
public JLabel lblConnectionId;
public JComboBox comboBox_14;
public JPanel panel_40;
public JLabel label_2;
public JLabel label_3;
public JLabel label_4;
public JTextField textField_19;
public JTextField textField_24;
public JTextField textField_25;
public JLabel lblCid;
public JComboBox comboBox_15;
public JButton button_2;
public JLabel label_6;
public JTextField textField_26;
public JLabel label_7;
public JTextField textField_27;
public JButton button_3;
public JPanel panel_41;
public JPanel panel_42;
public JButton button_4;
public JButton button_5;
public JButton button_6;
public JButton btnGpsReset_3;
public JButton button_9;
public JButton button_10;
public JLabel label_8;
public JComboBox comboBox_16;
public JButton button_11;
public JPanel panel_43;
public JTextField textField_29;
public JLabel label_9;
public JLabel label_10;
public JLabel label_11;
public JLabel label_13;
public JLabel label_14;
public JTextField textField_30;
public JLabel label_15;
public JTextField textField_31;
public JTextField textField_33;
public JTextField textField_34;
public JTextField textField_35;
public JButton button_12;
public JButton button_13;
public JLabel label_16;
public JTextField textField_36;
public JButton btnGpsReset_2;
public JButton btnGpsReset_4;
public JTextArea textArea_15;
public JScrollPane scrollPane_20;
public JPanel panel_44;
public JComboBox comboBox_17;
public JLabel lblEmailTestingFor;
public JPanel panel_45;
public JPanel panel_46;
public JLabel lblNewLabel_1;
public JTextField textField_28;
public JLabel lblUserName_1;
public JTextField textField_32;
public JLabel lblPassword_1;
public JTextField textField_37;
public JLabel lblSenderEmail;
public JTextField textField_38;
public JLabel lblMesssage;
public JTextArea textArea_16;
public JScrollPane scrollPane_22;
public JButton btnSend_1;
public JLabel lblCid_1;
public JComboBox comboBox_18;
public JLabel lblReceiverEmail;
public JTextField textField_39;
public JLabel lblEmailSubject;
public JTextField textField_40;
public JTextPane textPane_10;
public JScrollPane scrollPane_24;
public JLabel lblPdpContexts;
public JButton btnClear;
public JButton btnSaveLog_7;
public JPanel panel_47;
public JPanel panel_48;
public JLabel label_5;
public JTextField textField_41;
public JLabel label_12;
public JTextField textField_42;
public JButton button_7;
public JButton button_8;
public JPanel panel_49;
public JRadioButton radioButton;
public JRadioButton radioButton_1;
public JLabel label_17;
public JTextField textField_43;
public JLabel label_18;
public JButton button_14;
public JLabel lblServerAddressType;
public JComboBox comboBox_19;
public JTextArea txtpnGetHttpwwwmmsupportnetmmsupporttcpudptestphpHttp;
public JScrollPane scrollPane_2;
public JPanel panel_50;
public JLabel label_19;
public JTextField textField_44;
public JButton button_15;
public JButton button_16;
public JLabel lblApnForTcp;
public JTextField textField_45;
public JButton btnAutofind;
public JLabel lblGetDeviceInfo;
public JLabel lblSignalStrength;
public JLabel lblRegistrationStatus;
public JLabel lblOperatorInfo;
public JLabel lblSimStatus;
public JLabel lblAvailableNetworks;
public JLabel lblTechnology;
public JLabel lblDeviceCapability;
public JLabel lblActivityStatus;
public JButton button_17;
public JButton button_18;
public JLabel lblSmsFormat;
public JLabel lblSmsScAddress;
public JButton button_20;
public JLabel lblPreferredOperator;
public JLabel lblBatteryLevel;
public JButton button_22;
public JLabel lblSerialPortSpeed;
public JButton button_23;
public JLabel lblNewLabel_2;
public JButton button_24;
public JLabel lblErrorReporting;
public JLabel lblConfiguration;
public JButton button_27;
public JLabel lblIndicators;
public JButton button_28;
public JLabel lblStationClass;
public JButton button_29;
public JLabel lblPdpContexts_1;
public JButton button_30;
public JLabel lblQos;
public JButton button_31;
public JLabel lblAttachStatus;
public JButton button_32;
public JLabel lblPdpAddress;
public JButton button_33;
public JLabel lblActivationStatus;
public JButton button_34;
public JLabel lblReset;
public JButton button_35;
public JLabel lblFlowControl;
public JButton button_36;
public JLabel lblClock;
public JButton button_37;
public JLabel lblSimIccid;
public JButton button_38;
public JLabel lblMultiplexMode;
public JButton button_39;
public JLabel lblBearerType;
public JButton button_40;
public JLabel lblRlp;
public JButton button_41;
public JLabel lblSerReporting;
public JButton button_42;
public JLabel lblExtError;
public JButton button_43;
public JLabel lblPhoneNumber_2;
public JButton button_44;
public JLabel lblFacilityLock_1;
public JButton button_45;
public JLabel lblCallForwarding;
public JLabel lblCallWaiting;
public JButton button_47;
public JLabel lblCallHolding;
public JButton button_48;
public JLabel lblPhonebook;
public JButton button_49;
public JLabel lblAlarms;
public JButton button_50;
public JLabel lblCallMeterMax;
public JButton button_51;
public JLabel lblPricePerUnit;
public JButton button_52;
public JLabel lblAtCommands;
public JButton button_53;
public JLabel lblCallMeter;
public JLabel lblServiceClass;
public JButton button_55;
public JLabel lblMuteControl;
public JLabel lblUssd;
public JButton button_57;
public JLabel lblSmsRead;
public JButton button_58;
public JLabel lblEchoMode;
public JButton button_59;
public JLabel lblCharacterSet;
public JButton button_60;
public JLabel lblAddressType;
public JButton button_61;
public JLabel lblDeviceInfo;
public JLabel lblSms;
public JButton button_25;
public JLabel lblConnection;
public JLabel lblNetwork;
public JLabel lblSim;
public JButton button_19;
public JLabel lblMisc;
public JButton button_54;
public JCheckBox chckbxApppendOutput;
public JPanel panel_51;
public JPanel panel_52;
public JButton btnDataConnect;
public JButton btnDisconnect_2;
public JButton btnShowIpAddress;
public JLabel lblManufacturer_1;
public JComboBox comboBox_20;
public JPanel panel_53;
public JLabel lblGeneral;
public JLabel lblMicGain;
public JLabel lblReadAdc;
public JLabel lblHeadsetControl;
public JLabel lblSimInserted;
public JLabel lblProvider;
public JLabel lblVoicemailNum;
public JLabel lblOprBand;
public JLabel lblHandsFree;
public JLabel lblEnggMode;
public JLabel lblIccid;
public JLabel lblTemperature;
public JLabel lblMultislot;
public JLabel lblCallReady;
public JLabel lblVoiceCoding;
public JLabel lblEmergencyNos;
public JLabel lblBuzszerMode;
public JLabel lblMultiip;
public JLabel lblLocalPort;
public JLabel lblTaskInfo;
public JLabel lblLocalIp;
public JLabel lblConnStatus;
public JLabel lblDns;
public JLabel lblIpHeader;
public JLabel lblServerMode;
public JLabel lblConnMode;
public JLabel lblTcpipMode;
public JLabel lblTransMode;
public JLabel lblTcpParm;
public JLabel lblHttpPara;
public JLabel lblHttpContext;
public JLabel lblFtpPort;
public JLabel lblFtpMode;
public JLabel lblTranfType;
public JLabel lblPutType;
public JLabel lblFtpServer;
public JLabel lblFtpUserName;
public JLabel lblFtpPassword;
public JLabel lblFtpFileNames;
public JLabel lblFtpPath;
public JLabel lblFtpContext;
public JLabel lblFtpState;
public JLabel lblGps;
public JLabel lblNewLabel_3;
public JLabel lblGpsResetMode;
public JLabel lblGpsLocation;
public JLabel lblGpsStatus;
public JLabel lblTcpip;
public JSeparator separator_2;
public JLabel lblHttp;
public JLabel lblFtp;
public JLabel lblAudio;
public JButton button_21;
public JButton button_26;
public JButton button_46;
public JButton button_56;
public JButton button_62;
public JButton button_63;
public JButton button_64;
public JButton button_65;
public JButton button_66;
public JButton button_67;
public JButton button_68;
public JButton button_69;
public JButton button_70;
public JButton button_71;
public JButton button_72;
public JButton button_73;
public JButton button_74;
public JButton button_75;
public JButton button_76;
public JButton button_77;
public JButton button_78;
public JButton button_79;
public JButton button_80;
public JButton button_81;
public JButton button_82;
public JButton button_83;
public JButton button_84;
public JButton button_85;
public JButton button_87;
public JButton button_88;
public JButton button_89;
public JButton button_86;
public JButton button_90;
public JButton button_91;
public JButton button_92;
public JButton button_93;
public JButton button_94;
public JButton button_95;
public JButton button_96;
public JButton button_97;
public JButton button_98;
public JButton button_99;
public JButton button_100;
public JButton button_101;
public JButton button_102;
public JPanel panel_54;
public JTabbedPane tabbedPane_2;
public JPanel panel_55;
public JPanel panel_56;
public JButton button_103;
public JButton button_104;
public JButton button_105;
public JLabel lblSystemInfo;
public JLabel lblIccid_1;
public JLabel lblSystemInfo_1;
public JLabel lblEchoCancel;
public JButton button_106;
public JLabel lblImeisv;
public JButton button_109;
public JLabel lblGpioSettings;
public JButton button_110;
public JLabel lblUssdMode;
public JButton button_111;
public JLabel lblWakeupCfg;
public JButton button_112;
public JLabel lblConnections;
public JButton button_113;
public JLabel lblStationClass_1;
public JButton button_114;
public JLabel lblConfig;
public JButton button_115;
public JLabel lblGpsMode;
public JButton button_116;
public JLabel lblIpStatistics;
public JButton button_117;
public JLabel lblListen;
public JButton button_119;
public JLabel label_37;
public JButton button_120;
public JLabel lblPcmAudio;
public JButton button_121;
public JLabel lblSimToolkitInterface;
public JButton button_122;
public JButton button_123;
public JLabel lblGpsSessionType;
public JButton button_124;
public JLabel lblQos_1;
public JButton button_125;
public JLabel lblSessionLock;
public JButton button_126;
public JLabel lblFotaMode;
public JButton button_128;
public JLabel lblTemperature_1;
public JButton button_129;
public JLabel lblTempProtection;
public JButton button_130;
public JLabel label_47;
public JButton button_131;
public JLabel lblFotaConnParm;
public JButton button_132;
public JLabel lblFotaStatus;
public JButton button_133;
public JLabel lblUpgradeStatus;
public JLabel lblGpsType;
public JButton button_135;
public JLabel label_53;
public JLabel lblGpsOrGnss;
public JButton button_136;
public JLabel lblNdisConnStatus;
public JButton button_137;
public JLabel lblVoicedataPref;
public JButton button_138;
public JLabel label_57;
public JButton button_139;
public JLabel lblGeneral_1;
public JLabel lblNetworkTime;
public JButton button_140;
public JButton button_141;
public JLabel lblTcpip_1;
public JButton button_149;
public JLabel lblGps_1;
public JPanel panel_57;
public JPanel panel_58;
public JLabel lblServer;
public JTextField txtWwwmmsupportnet_1;
public JLabel label_21;
public JTextField textField_47;
public JButton button_107;
public JButton button_108;
public JLabel label_22;
public JTextField textField_48;
public JLabel label_23;
public JButton button_118;
public JPanel panel_60;
public JPanel panel_61;
public JPanel panel_62;
public JTextField textField_50;
public JLabel label_25;
public JLabel label_26;
public JLabel label_27;
public JTextField textField_51;
public JTextField textField_52;
public JButton button_150;
public JLabel lblFota_1;
public JLabel lblFotaMode_1;
public JTextArea txtrGetHttpwwwmmsupportnetmmsupporttcpudptestphpHttp_1;
public JScrollPane scrollPane_5;
public JButton btnGetApn;
public JTextArea textArea;
public JScrollPane scrollPane_7;
public JLabel lblServerData;
public JButton btnClear_7;
public JLabel lblGpsMode_1;
public JComboBox comboBox_21;
public JButton btnNewButton_2;
public JButton btnGet_1;
public JLabel lblAgpsServerAddress;