Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does ^BOOT coomand means on Huawei E220?

I have connected Huawei USB UMTS modem (E220) to my Linux box, i.e. RaspberryPi. Now I get 2 ttyUSB port available to communicate to it, where I use ttyUSB0 to establish mobile Internet connection and ttyUSB1 for other tasks, like sending and receiving SMSes, checking status and error codes, make modem configurations, etc. At regular intervals (2secs) I get this AT command on port ttyUSB1:

^DSFLOWRPT:n,n,n,n,n,n,n

which I fully understand (link: thanks to the user user ginggs from http://mybroadband.co.za). Less frequently I also get ^BOOT command, looking like this:

^BOOT:12659389,0,0,0,58

Can someone explain what those numbers in ^BOOT mean? Can I make notifications/warnings in ^DSFLOWRPT and ^BOOT be less/more verbose (something like "errors on/off")?

[edit]

Added link for understanding the ^DSFLOWRPT command.

like image 536
TomiL Avatar asked Oct 21 '22 22:10

TomiL


1 Answers

In AT Command Interface Specification, Huawei mention that ^BOOT unsolicited command only for the Huawei specified client, nothing specific.

You can disable all unsolicited result by the following AT command:

AT^CURC=0

To enable it back just change 0 to 1:

AT^CURC=1
like image 154
Dmitry Avatar answered Nov 02 '22 09:11

Dmitry