All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] fix can't attach GPRS issue
@ 2011-05-10  6:38 Caiwen Zhang
  2011-06-02  7:51 ` Denis Kenzior
  0 siblings, 1 reply; 8+ messages in thread
From: Caiwen Zhang @ 2011-05-10  6:38 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 2897 bytes --]

This patch is to fix the issue that can't attach GPRS after detach it. 

Cause:
  When start detaching GPRS, driver_attched value is set to FALSE, if
device registered to GPRS network during GPRS detaching, driver_attched is set to TURE.
After that, GPRS attaching will always be ignored because driver_attched is always TURE.
It seems the definition of driver_attched is confused.

Scenario:
  When device is unregistered(+CREG: 2), GPRS is detached. During GPRS detaching, device
registered to network again(+CREG: 1, xxx, xxx).

Solution:
  variable attached represents the GPRS attach status, it only be TRUE, when CGATT=1 and 
CGREG is registered or roaming(roaming allowed). variable driver_attached represents CGATT
status of the driver. its value will only be changed after set_attached successfully or 
GPRS detached notified. variable pending_attached represents the pending status of CGATT.


---
 src/gprs.c |   21 +++++++++++++--------
 1 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/src/gprs.c b/src/gprs.c
index deffeb8..e221741 100644
--- a/src/gprs.c
+++ b/src/gprs.c
@@ -74,8 +74,9 @@ enum packet_bearer {
 
 struct ofono_gprs {
 	GSList *contexts;
-	ofono_bool_t attached;
+	ofono_bool_t attached; /*CGATT=1 and CGREG is registered or roaming*/
 	ofono_bool_t driver_attached;
+	ofono_bool_t pending_attached;
 	ofono_bool_t roaming_allowed;
 	ofono_bool_t powered;
 	ofono_bool_t suspended;
@@ -1499,8 +1500,8 @@ static void gprs_attach_callback(const struct ofono_error *error, void *data)
 
 	gprs->flags &= ~GPRS_FLAG_ATTACHING;
 
-	if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
-		gprs->driver_attached = !gprs->driver_attached;
+	if (error->type == OFONO_ERROR_TYPE_NO_ERROR)
+		gprs->driver_attached = gprs->pending_attached;
 
 	if (gprs->driver->attached_status) {
 		gprs->driver->attached_status(gprs, registration_status_cb,
@@ -1539,18 +1540,23 @@ static void gprs_netreg_update(struct ofono_gprs *gprs)
 
 	attach = attach && gprs->powered;
 
-	if (gprs->driver_attached == attach)
-		return;
-
 	if (gprs->flags & GPRS_FLAG_ATTACHING) {
+		if (gprs->pending_attached == attach) {
+			gprs->flags &= ~GPRS_FLAG_RECHECK;
+			return;
+		}
+
 		gprs->flags |= GPRS_FLAG_RECHECK;
 		return;
+	} else {
+		if (gprs->driver_attached == attach)
+			return;
 	}
 
 	gprs->flags |= GPRS_FLAG_ATTACHING;
 
 	gprs->driver->set_attached(gprs, attach, gprs_attach_callback, gprs);
-	gprs->driver_attached = attach;
+	gprs->pending_attached = attach;
 }
 
 static void netreg_status_changed(int status, int lac, int ci, int tech,
@@ -2103,7 +2109,6 @@ void ofono_gprs_status_notify(struct ofono_gprs *gprs, int status)
 			status == NETWORK_REGISTRATION_STATUS_ROAMING)
 		goto detach;
 
-	gprs->driver_attached = TRUE;
 	gprs_attached_update(gprs);
 
 	return;
-- 
1.7.5


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] fix can't attach GPRS issue
  2011-05-10  6:38 [PATCH v2] fix can't attach GPRS issue Caiwen Zhang
@ 2011-06-02  7:51 ` Denis Kenzior
  2011-06-03  2:15   ` Zhang, Caiwen
  0 siblings, 1 reply; 8+ messages in thread
From: Denis Kenzior @ 2011-06-02  7:51 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1417 bytes --]

Hi Caiwen,

On 05/10/2011 01:38 AM, Caiwen Zhang wrote:
> This patch is to fix the issue that can't attach GPRS after detach it. 
> 

I'd like to see a complete AT log of this situation if possible.  It
sounds like there's something else going on here...

> Cause:
>   When start detaching GPRS, driver_attched value is set to FALSE, if
> device registered to GPRS network during GPRS detaching, driver_attched is set to TURE.
> After that, GPRS attaching will always be ignored because driver_attched is always TURE.
> It seems the definition of driver_attched is confused.
> 
> Scenario:
>   When device is unregistered(+CREG: 2), GPRS is detached. During GPRS detaching, device
> registered to network again(+CREG: 1, xxx, xxx).

Really sounds like your firmware is too twitchy.  Why does it report
CREG: 2 and then immediately finds registration?  Is this related to
cell roaming or technology switch?

> 
> Solution:
>   variable attached represents the GPRS attach status, it only be TRUE, when CGATT=1 and 
> CGREG is registered or roaming(roaming allowed). variable driver_attached represents CGATT
> status of the driver. its value will only be changed after set_attached successfully or 
> GPRS detached notified. variable pending_attached represents the pending status of CGATT.
> 

Can you try the attached patch and tell me if this fixes your problem?

Regards,
-Denis

[-- Attachment #2: 0001-gprs-Experimental-fix-for-twitchy-Huawei-firmware.patch --]
[-- Type: text/plain, Size: 869 bytes --]

>From 4e02f2b46ce7b930b2c3ee6228d8c43e529a2254 Mon Sep 17 00:00:00 2001
From: Denis Kenzior <denkenz@gmail.com>
Date: Thu, 2 Jun 2011 02:48:05 -0500
Subject: [PATCH] gprs: Experimental fix for twitchy Huawei firmware

---
 src/gprs.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/gprs.c b/src/gprs.c
index acbfa56..b9e3105 100644
--- a/src/gprs.c
+++ b/src/gprs.c
@@ -2108,6 +2108,14 @@ void ofono_gprs_status_notify(struct ofono_gprs *gprs, int status)
 		return;
 	}
 
+	/*
+	 * If we're already taking action, e.g. attaching or detaching, then
+	 * ignore this notification for now, we will take appropriate action
+	 * after the set_attach operation has completed
+	 */
+	if (gprs->flags & GPRS_FLAG_ATTACHING)
+		return;
+
 	/* We registered without being powered */
 	if (gprs->powered == FALSE)
 		goto detach;
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] fix can't attach GPRS issue
  2011-06-03  2:15   ` Zhang, Caiwen
@ 2011-06-02  9:13     ` Denis Kenzior
  2011-06-03  3:42       ` Zhang, Caiwen
  0 siblings, 1 reply; 8+ messages in thread
From: Denis Kenzior @ 2011-06-02  9:13 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 248 bytes --]

Hi Caiwen,

>>
>> Can you try the attached patch and tell me if this fixes your problem?
>>
> 
> Yes, it works. 

From the log it isn't clear whether oFono eventually re-attaches
automatically, does that work as well?

Regards,
-Denis

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] fix can't attach GPRS issue
  2011-06-03  3:42       ` Zhang, Caiwen
@ 2011-06-02 12:22         ` Denis Kenzior
  2011-06-07  7:24           ` Zhang, Caiwen
  0 siblings, 1 reply; 8+ messages in thread
From: Denis Kenzior @ 2011-06-02 12:22 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 3465 bytes --]

Hi Caiwen,

On 06/02/2011 10:42 PM, Zhang, Caiwen wrote:
> Hi Denis,
> 
>>>>
>>>> Can you try the attached patch and tell me if this fixes your
>> problem?
>>>>
>>>
>>> Yes, it works.
>>
>> From the log it isn't clear whether oFono eventually re-attaches
>> automatically, does that work as well?
>>
> 
> It won't re-attach automatically. Following are the log from line 6792 to
> 6802 and my comment.
> 
> ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
> ofonod[619]: src/gprs.c:netreg_status_changed() 1
> 
> gprs->netreg_status is 1 (NETWORK_REGISTRATION_STATUS_REGISTERED).
> 
> ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
> ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
> 
> gprs->driver_attached is set to TURE. From now on, unless the modem unregistered,
> gprs_netreg_update() will always return before execute gprs->driver->set_attached()
> because (gprs->driver_attached == attach).

So to me it doesn't look like your interpretation is correct:

At line 6754:

ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0

This is issued in the initial gprs_netreg_update called from netreg_watch.

Then we issue a CGREG query from gprs_attach_callback@line 6768:

ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n

So driver_attached is TRUE here

At line 6778 the modem has a nervous tick:
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG:
2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n

And the first CREG: 2 causes us to issue another gprs_netreg_update
which issues a detach@line 6797:

ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG:
0\r\n\r\nOK\r\n

The subsequent CGREG should simply update our Attached attribute to
False.  The next CREG will trigger another gprs_netreg_update, which
should in turn set the RECHECK flag to TRUE. And the subsequent CGREG
has no effect.

With my earlier patch, you should not have any changes to
driver_attached until the CGATT=0 returns, which should trigger another
CGREG update and assuming the RECHECK flag was set, another call to
gprs_update_netreg.

Can you investigate why this isn't happening?  Instrumentation of the
settings of driver_attached and flags would be helpful.

> 
> ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
> ofonod[619]: PCUI: > AT+CGATT=0\r
> ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
> ofonod[619]: src/gprs.c:netreg_status_changed() 1
> ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
> ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
> ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
> 
> gprs->driver_attached is used to indicated (CGATT) status, its value shouldn't be changed before 
> gprs->driver->set_attached() execute completely.
> In this case, its value happen to be changed during gprs->driver->set_attached() is executed. So
> its value is not the same as (CGATT) status. 

The value of driver_attached is not about the current CGATT status, but
the pending status of set_attached to the driver.  While related, they
are not the same.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH v2] fix can't attach GPRS issue
  2011-06-02  7:51 ` Denis Kenzior
@ 2011-06-03  2:15   ` Zhang, Caiwen
  2011-06-02  9:13     ` Denis Kenzior
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Caiwen @ 2011-06-03  2:15 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1814 bytes --]

Hi Denis,

> On 05/10/2011 01:38 AM, Caiwen Zhang wrote:
> > This patch is to fix the issue that can't attach GPRS after detach it.
> >
> 
> I'd like to see a complete AT log of this situation if possible.  It
> sounds like there's something else going on here...
> 

Attached the whole log. Please refer to line 6793:

ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n

> > Cause:
> >   When start detaching GPRS, driver_attched value is set to FALSE, if
> > device registered to GPRS network during GPRS detaching,
> driver_attched is set to TURE.
> > After that, GPRS attaching will always be ignored because
> driver_attched is always TURE.
> > It seems the definition of driver_attched is confused.
> >
> > Scenario:
> >   When device is unregistered(+CREG: 2), GPRS is detached. During
> GPRS
> > detaching, device registered to network again(+CREG: 1, xxx, xxx).
> 
> Really sounds like your firmware is too twitchy.  Why does it report
> CREG: 2 and then immediately finds registration?  Is this related to
> cell roaming or technology switch?
> 
> >
> > Solution:
> >   variable attached represents the GPRS attach status, it only be
> > TRUE, when CGATT=1 and CGREG is registered or roaming(roaming
> > allowed). variable driver_attached represents CGATT status of the
> > driver. its value will only be changed after set_attached
> successfully or GPRS detached notified. variable pending_attached
> represents the pending status of CGATT.
> >
> 
> Can you try the attached patch and tell me if this fixes your problem?
> 

Yes, it works. 

best regards
Caiwen


[-- Attachment #2: gprs_can_t_auto_attach.log --]
[-- Type: application/octet-stream, Size: 406078 bytes --]

ofonod[619]: oFono version 0.48
ofonod[619]: src/plugin.c:__ofono_plugin_init() 
ofonod[619]: plugins/push-notification.c:push_notification_init() 
ofonod[619]: plugins/smart-messaging.c:smart_messaging_init() 
ofonod[619]: plugins/dun_gw.c:dun_gw_init() 
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126d80, name: linktop
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126d20, name: nokiacdma
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126cc0, name: nokia
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126c60, name: tc65
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126be0, name: ste
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126b80, name: ifx
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126b20, name: palmpre
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126ac0, name: novatel
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126a60, name: sierra
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126a00, name: huawei
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x81269a0, name: zte
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126940, name: hso
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x81268e0, name: mbm
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126880, name: calypso
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126820, name: wavecom
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x81267c0, name: gobi
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8126760, name: g1
ofonod[619]: src/cdma-voicecall.c:ofono_cdma_voicecall_driver_register() driver: 0x81266e4, name: cdmamodem
ofonod[619]: src/modem.c:ofono_devinfo_driver_register() driver: 0x81266f8, name: cdmamodem
ofonod[619]: src/cdma-connman.c:ofono_cdma_connman_driver_register() driver: 0x8126714, name: cdmamodem
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x81266a0, name: phonesim
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x812668c, name: phonesim
ofonod[619]: src/ctm.c:ofono_ctm_driver_register() driver: 0x8126678, name: phonesim
ofonod[619]: plugins/phonesim.c:parse_config() filename /usr/local/etc/ofono/phonesim.conf
ofonod[619]: Reading of /usr/local/etc/ofono/phonesim.conf failed: No such file or directory
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x81265a0, name: stemodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x812662c, name: stemodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x8126600, name: stemodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x8126480, name: ifxmodem
ofonod[619]: src/audio-settings.c:ofono_audio_settings_driver_register() driver: 0x81264c8, name: ifxmodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x81264e0, name: ifxmodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x812650c, name: ifxmodem
ofonod[619]: src/stk.c:ofono_stk_driver_register() driver: 0x8126530, name: ifxmodem
ofonod[619]: src/ctm.c:ofono_ctm_driver_register() driver: 0x8126554, name: ifxmodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x81263ec, name: hsomodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x8126420, name: hsomodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x8126374, name: mbmmodem
ofonod[619]: src/stk.c:ofono_stk_driver_register() driver: 0x8126398, name: mbmmodem
ofonod[619]: src/location-reporting.c:ofono_location_reporting_driver_register() driver: 0x81263b4, name: mbmmodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x81262a0, name: hfpmodem
ofonod[619]: src/network.c:ofono_netreg_driver_register() driver: 0x8126300, name: hfpmodem
ofonod[619]: src/call-volume.c:ofono_call_volume_driver_register() driver: 0x8126334, name: hfpmodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x8126220, name: calypsomodem
ofonod[619]: src/stk.c:ofono_stk_driver_register() driver: 0x8126268, name: calypsomodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x8126140, name: huaweimodem
ofonod[619]: src/audio-settings.c:ofono_audio_settings_driver_register() driver: 0x8126188, name: huaweimodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x81261c0, name: huaweimodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x812619c, name: huaweimodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x81260e0, name: nwmodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x8125f60, name: atmodem
ofonod[619]: src/modem.c:ofono_devinfo_driver_register() driver: 0x8126000, name: atmodem
ofonod[619]: src/call-barring.c:ofono_call_barring_driver_register() driver: 0x8125fb8, name: atmodem
ofonod[619]: src/call-forwarding.c:ofono_call_forwarding_driver_register() driver: 0x8125d80, name: atmodem
ofonod[619]: src/call-meter.c:ofono_call_meter_driver_register() driver: 0x8125dc0, name: atmodem
ofonod[619]: src/call-settings.c:ofono_call_settings_driver_register() driver: 0x8125c80, name: atmodem
ofonod[619]: src/phonebook.c:ofono_phonebook_driver_register() driver: 0x8125fd8, name: atmodem
ofonod[619]: src/ussd.c:ofono_ussd_driver_register() driver: 0x8125f28, name: atmodem
ofonod[619]: src/sms.c:ofono_sms_driver_register() driver: 0x8125d00, name: atmodem
ofonod[619]: src/sim.c:ofono_sim_driver_register() driver: 0x8125e80, name: atmodem
ofonod[619]: src/stk.c:ofono_stk_driver_register() driver: 0x8125f04, name: atmodem
ofonod[619]: src/network.c:ofono_netreg_driver_register() driver: 0x8125e20, name: atmodem
ofonod[619]: src/cbs.c:ofono_cbs_driver_register() driver: 0x8125d60, name: atmodem
ofonod[619]: src/call-volume.c:ofono_call_volume_driver_register() driver: 0x812601c, name: atmodem
ofonod[619]: src/gprs.c:ofono_gprs_driver_register() driver: 0x8126044, name: atmodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x8126068, name: atmodem
ofonod[619]: src/sim-auth.c:ofono_sim_auth_driver_register() driver: 0x812607c, name: atmodem
ofonod[619]: src/gnss.c:ofono_gnss_driver_register() driver: 0x8126094, name: atmodem
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8125a80, name: u8500
ofonod[619]: src/modem.c:ofono_devinfo_driver_register() driver: 0x8125a58, name: u8500
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x8125a00, name: n900
ofonod[619]: src/modem.c:ofono_modem_driver_register() driver: 0x81259a0, name: isiusb
ofonod[619]: src/modem.c:ofono_devinfo_driver_register() driver: 0x81256f4, name: isimodem
ofonod[619]: src/phonebook.c:ofono_phonebook_driver_register() driver: 0x81256e4, name: isimodem
ofonod[619]: src/network.c:ofono_netreg_driver_register() driver: 0x8125720, name: isimodem
ofonod[619]: src/voicecall.c:ofono_voicecall_driver_register() driver: 0x8125760, name: isimodem
ofonod[619]: src/sms.c:ofono_sms_driver_register() driver: 0x81257c0, name: isimodem
ofonod[619]: src/cbs.c:ofono_cbs_driver_register() driver: 0x81257e0, name: isimodem
ofonod[619]: src/sim.c:ofono_sim_driver_register() driver: 0x8125800, name: isimodem
ofonod[619]: src/ussd.c:ofono_ussd_driver_register() driver: 0x8125848, name: isimodem
ofonod[619]: src/call-forwarding.c:ofono_call_forwarding_driver_register() driver: 0x8125860, name: isimodem
ofonod[619]: src/call-settings.c:ofono_call_settings_driver_register() driver: 0x8125880, name: isimodem
ofonod[619]: src/call-barring.c:ofono_call_barring_driver_register() driver: 0x81258b0, name: isimodem
ofonod[619]: src/call-meter.c:ofono_call_meter_driver_register() driver: 0x81258e0, name: isimodem
ofonod[619]: src/radio-settings.c:ofono_radio_settings_driver_register() driver: 0x8125920, name: isimodem
ofonod[619]: src/gprs.c:ofono_gprs_driver_register() driver: 0x8125944, name: isimodem
ofonod[619]: src/gprs.c:ofono_gprs_context_driver_register() driver: 0x8125958, name: isimodem
ofonod[619]: src/audio-settings.c:ofono_audio_settings_driver_register() driver: 0x812596c, name: isimodem
ofonod[619]: src/modem.c:ofono_modem_create() name: (null), type: huawei
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property Path
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property Registered
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.0/ttyUSB0/tty/ttyUSB0 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property Modem
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Path
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.1/ttyUSB1/tty/ttyUSB1 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property HasVoice
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Path
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.2/ttyUSB2/tty/ttyUSB2 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property Pcui
ofonod[619]: src/modem.c:set_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: plugins/huawei.c:huawei_probe() 0xa048138
ofonod[619]: plugins/hfp_ag.c:modem_watch() modem: 0xa048138, added: 1
ofonod[619]: plugins/dun_gw.c:modem_watch() modem: 0xa048138, added: 1
ofonod[619]: plugins/smart-messaging.c:modem_watch() modem: 0xa048138, added: 1
ofonod[619]: plugins/push-notification.c:modem_watch() modem: 0xa048138, added: 1
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Path
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.3/ttyUSB3/tty/ttyUSB3 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Path
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.4/ttyUSB4/tty/ttyUSB4 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Path
ofonod[619]: plugins/udev.c:add_modem() /devices/pci0000:00/0000:00:00.7/usb1/1-3/1-3:1.5/ttyUSB5/tty/ttyUSB5 (huawei)
ofonod[619]: plugins/udev.c:add_huawei() modem 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property ModemRegistered
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property PcuiRegistered
ofonod[619]: plugins/huawei.c:huawei_enable() 0xa048138
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property NDIS
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Pcui
ofonod[619]: plugins/huawei.c:open_device() Pcui /dev/ttyUSB2
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property HasVoice
ofonod[619]: plugins/huawei.c:query_sim_state() 
ofonod[619]: PCUI: > ATE0 +CMEE=1\r
ofonod[619]: PCUI: < ATE0 +CMEE=1\r\r\nOK\r\n
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: plugins/huawei.c:cfun_enable() 
ofonod[619]: PCUI: > AT^SYSINFO\r
ofonod[619]: PCUI: < \r\n^SYSINFO:2,3,0,5,1,,4\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:notify_sim_state() 1
ofonod[619]: src/modem.c:modem_change_state() old state: 0, new state: 1
ofonod[619]: plugins/huawei.c:huawei_pre_sim() 0xa048138
ofonod[619]: PCUI: > AT^U2DIAG?\r
ofonod[619]: src/sim.c:ofono_sim_add_state_watch() 0xa0412a0
ofonod[619]: src/sim.c:ofono_sim_add_state_watch() 0xa0412a0
ofonod[619]: PCUI: < \r\n548\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^GETPORTMODE\r
ofonod[619]: PCUI: < \r\n^GETPORTMODE:TYPE:WCDMA:Qualcomm,MDM:0,DIAG:1,PCUI:2,GPS:3,NDIS:5\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^USSDMODE=?\r
ofonod[619]: PCUI: < \r\n^USSDMODE:(0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^CVOICE=?\r
ofonod[619]: PCUI: < \r\n^CVOICE:(0)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGMI\r
ofonod[619]: PCUI: < \r\nhuawei\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^USSDMODE?\r
ofonod[619]: PCUI: < \r\n^USSDMODE:1\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^CVOICE?\r
ofonod[619]: PCUI: < \r\n^CVOICE:0,8000,16,20\r\n\r\nOK\r\n
ofonod[619]: Voice channel: 8000 Hz, 16 bits, 20ms period
ofonod[619]: PCUI: > AT+CRSM=192,12258,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183022FE28A01058B032F06048002000A880110"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CGMM\r
ofonod[619]: PCUI: < \r\nEM770W\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^USSDMODE=0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT^DDSETEX=?\r
ofonod[619]: PCUI: < \r\n^DDSETEX:(2)\r\n\r\nOK\r\n\r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: > AT+CRSM=176,12258,0,0,10\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"98681001141000826849"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 10
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 10
ofonod[619]: PCUI: > AT+CGMR\r
ofonod[619]: PCUI: < \r\n11.126.10.DEMO05.00\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGSN\r
ofonod[619]: PCUI: < \r\n357030025900651\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28421,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183026F058A01058B036F060380020004880110"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CRSM=176,28421,0,0,4\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"7A68656E"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 4
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 4
ofonod[619]: PCUI: > AT+CRSM=192,12037,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183022F058A01058B032F060380020004880128"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CRSM=176,12037,0,0,4\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"FFFFFFFF"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 4
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 4
ofonod[619]: PCUI: > AT+CPIN?\r
ofonod[619]: PCUI: < \r\n+CPIN: READY\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_cpin_cb() crsm_pin_cb: READY
ofonod[619]: drivers/atmodem/sim.c:at_pin_retries_query() 
ofonod[619]: PCUI: > AT^CPIN?\r
ofonod[619]: PCUI: < \r\n^CPIN: READY,,10,3,10,3\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:huawei_cpin_cb() retry counter id=9, val=10
ofonod[619]: drivers/atmodem/sim.c:huawei_cpin_cb() retry counter id=1, val=3
ofonod[619]: drivers/atmodem/sim.c:huawei_cpin_cb() retry counter id=11, val=10
ofonod[619]: drivers/atmodem/sim.c:huawei_cpin_cb() retry counter id=4, val=3
ofonod[619]: PCUI: > AT+CRSM=192,28590,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28589,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183026FAD8A01058B036F060880020004880118"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CRSM=176,28589,0,0,4\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"00000002"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 4
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 4
ofonod[619]: PCUI: > AT+CRSM=192,28438,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28472,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183026F388A01058B036F06048002000A880120"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CRSM=176,28472,0,0,10\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"9EFFBFFDFF3EDC034001"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 10
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 10
ofonod[619]: PCUI: > AT+CRSM=192,28502,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"62178202412183026F568A01058B036F060680020001880128"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 25
ofonod[619]: PCUI: > AT+CRSM=176,28502,0,0,1\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"00"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 1
ofonod[619]: src/simfs.c:sim_fs_op_read_block_cb() bufoff: 0, dataoff: 0, tocopy: 1
ofonod[619]: PCUI: > AT+CIMI\r
ofonod[619]: PCUI: < \r\n460010031731869\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_cimi_cb() cimi_cb: 460010031731869
ofonod[619]: src/modem.c:modem_change_state() old state: 1, new state: 2
ofonod[619]: plugins/huawei.c:huawei_post_sim() 0xa048138
ofonod[619]: PCUI: > AT+CRC=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CLIP=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COLP=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CCWA=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: drivers/huaweimodem/voicecall.c:huawei_voicecall_initialized() registering to notifications
ofonod[619]: src/sim.c:ofono_sim_add_state_watch() 0xa0412a0
ofonod[619]: PCUI: > AT^CVOICE=?\r
ofonod[619]: PCUI: < \r\n^CVOICE:(0)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS=?\r
ofonod[619]: plugins/bluetooth.c:manager_properties_cb() 
ofonod[619]: plugins/bluetooth.c:parse_adapters() 
ofonod[619]: plugins/bluetooth.c:parse_adapters() Calling GetProperties on /org/bluez/611/hci0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: < \r\n+CSCS: ("IRA","GSM","UCS2")\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT^SYSCFG=?\r
ofonod[619]: plugins/bluetooth.c:adapter_properties_cb() 
ofonod[619]: plugins/bluetooth.c:parse_devices() 
ofonod[619]: plugins/bluetooth.c:adapter_properties_cb() Adapter Address: 12:60:41:7F:03:00, Path: /org/bluez/611/hci0
ofonod[619]: Registered handle for channel 13: 0x10006
ofonod[619]: PCUI: < \r\n^SYSCFG:(2,13,14,16),(0-3),((2000000400380,"GSM900/GSM1800/WCDMA900/WCDMA2100"),(4a80000,"GSM850/GSM1900/WCDMA850/WCDMA1900"),(3fffffff,"All Bands")),(0-2),(0-4)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSMS=?\r
ofonod[619]: PCUI: < \r\n+CSMS: (0-1)\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sms.c:at_csms_query_cb() CSMS query parsed successfully
ofonod[619]: PCUI: > AT+CRSM=192,28480,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"621982054221001C0283026F408A01058B036F0605800200388800"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_info_cb() crsm_info_cb: 90, 00, 27
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CPBS=?\r
ofonod[619]: PCUI: < \r\n+CPBS: ("SM","EN","ON")\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSMS=1\r
ofonod[619]: PCUI: < \r\n+CSMS: 1,1,1\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=178,28480,1,4,28\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"FFFFFFFFFFFFFFFFFFFFFFFFFFFF07A14115308268F9FFFFFFFFFFFF"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 28
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSMS?\r
ofonod[619]: PCUI: < \r\n+CSMS: 1,1,1,1\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=178,28480,2,4,28\r
ofonod[619]: PCUI: < \r\n+CRSM: 144,0,"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sim.c:at_crsm_read_cb() crsm_read_cb: 90, 00, 28
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CMGF=?\r
ofonod[619]: PCUI: < \r\n+CMGF: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CPMS=?\r
ofonod[619]: PCUI: < \r\n+CPMS: ("ME","MT","SM","SR"),("ME","MT","SM","SR"),("ME","MT","SM","SR")\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CMGF=0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CPMS="ME","ME","ME"\r
ofonod[619]: PCUI: < \r\n^RSSI:18\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CPMS: 1,23,1,23,1,23\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 17,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 17
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CNMI=?\r
ofonod[619]: PCUI: < \r\n+CNMI: (0,1,2),(0,1,2,3),(0,2),(0,1,2),(0,1)\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sms.c:build_cnmi_string() 
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 18,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 18
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CNMI=1,1,2,1,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: src/sms.c:sms_restore_tx_queue() 
ofonod[619]: plugins/push-notification.c:sms_watch() registered
ofonod[619]: plugins/smart-messaging.c:sms_watch() registered
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04f418
ofonod[619]: PCUI: > AT+CMGL=4\r
ofonod[619]: PCUI: < \r\n+CMGL: 0,0,,140\r\n0891683110104105F02405800110F00008115060900483237C5C0A656C76845BA26237FF0C60A8672C6B214E0A7F516D4191CF0031002E003500340020004D0042FF0C672C67087D2F8BA16D4191CF0034002E003600310020004D0042FF0C672C6B21672C686359579910591662638D390030002E003000305143FF0C5F53524D4F59989D003600330039002E0036003751433002\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/sms.c:at_cmgl_notify() 
ofonod[619]: drivers/atmodem/sms.c:at_cmgl_notify() Found an old SMS PDU: 0891683110104105F02405800110F00008115060900483237C5C0A656C76845BA26237FF0C60A8672C6B214E0A7F516D4191CF0031002E003500340020004D0042FF0C672C67087D2F8BA16D4191CF0034002E003600310020004D0042FF0C672C6B21672C686359579910591662638D390030002E003000305143FF0C5F53524D4F59989D003600330039002E0036003751433002, with len: 140
ofonod[619]: src/sms.c:ofono_sms_deliver_notify() len 149 tpdu len 140
ofonod[619]: src/sms.c:handle_deliver() 
ofonod[619]: src/sms.c:sms_dispatch() 
ofonod[619]: src/sms.c:sms_dispatch() dst -1 src -1 8bit 20
ofonod[619]: drivers/atmodem/sms.c:at_cmgl_done() 
ofonod[619]: PCUI: > AT+CGSMS=3\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CMGD=0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04f418
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04f418
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.21.72.161
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04eb28
ofonod[619]: PCUI: < \r\n^RSSI:22\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 18,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 18
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04f418
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 17,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 17
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04f418
ofonod[619]: PCUI: < \r\n^RSSI:15\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa047fa8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046e50
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa046d68
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa046c90
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047f88
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa044110
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa0473e0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa047528
ofonod[619]: src/network.c:netreg_remove() atom: 0xa046580
ofonod[619]: Modem: < ~\377}#\300!}&}!} }$\360\342~
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 18,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 18
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa046438
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa046438
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa048098
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04eae0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa03e8b0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0459b8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0472d8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa0473b8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048318
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa046d50
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa03e910
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04d6d0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0490c8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa049090
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e0c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: Modem: < ~\377}#\200!}#}!} }<\201}&}*}+},}-\203}&}*}+},}.\202}&}*}+},}-\204}&}*}+},}.\345\272~
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\n^SRVST:2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc 0xa0473a8
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0473c8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Reopened GPRS context channel
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e078
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa048f10
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04eae0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0472f0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0472b8
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa049090
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048318
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, 0xa04eb80
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04f6a8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0459d0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0473e0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047810
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047e40
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0480a0
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e648
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0480a0
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f6e0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa0463c8
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0480a0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"
ofonod[619]: PCUI: < CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\n^RSSI:0\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, 0xa04ed78
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, 0xa04ed78
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n\r\n^RSSI:17\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 17,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 17
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0480a0, 0xa04ed78
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.23.1.160
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04f658
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0473c0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa043d40
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047e40
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0c0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0480a0
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e648
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048978
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0480a0
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f6e0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e310
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e310
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e310
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.16.50.69
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa03e900
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa048f20
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa047028
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d78
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa043d40
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e0c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04e8c0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04d558
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04d558
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04ead0
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa03e910
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa047028
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0473e0
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0473a8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e0c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048318
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:20\r\n
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e270
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e270
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 0, 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e270
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.16.171.99
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa03e900
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04d6e0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa047028
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d78
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa043d40
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa047810
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa047510
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048978
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: < \r\n^RSSI:18\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04d378
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04d378
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04eae8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa03e910
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa048ec0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0472b8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0473c8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04ef50
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04e0c0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n\r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e408
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e408
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04eda0
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa03e910
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0472f8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0472d8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0472b8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa0473a8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa047810
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048990
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, 0xa04e428
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa047010
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa048f20
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0459f0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0472b8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0490b0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04ef28
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa047510
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,
ofonod[619]: PCUI: < ""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa047010
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04d6e0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0459f0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0472b8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0490b0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04ef28
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04e8c0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048978
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046d00
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, 0xa04def0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n\r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046d00, 0xa04def0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa047738
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0459f0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0459b8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d58
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047e60
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04dfb8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04df98
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046d00
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n\r\n^RSSI:0\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa047738
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0459f0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0459b8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d58
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047e60
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0485f8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa03e8d0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e8b0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0485f8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048978
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04d558
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa050210
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0476e8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0490a8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d40
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04ef28
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04df98
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e918
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa0470a8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa0417e0
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, 0xa04d4c8
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa050210
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046fd8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa048ec0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0490a8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa03e8b0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e918
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048990
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04ea98
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046fd8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04d680
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d58
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa03e8b0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e918
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa050210
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046fd8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa048ec0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0490a8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04df98
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e918
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048990
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04d438
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa046ff0
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa048ec0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04d680
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d58
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04df98
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e918
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa048ef8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04eaf8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0490a8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0473a8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047810
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa047530
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa047510
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa03e900
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n\r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04b140
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04f7f8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04eaf8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0472b8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa043d58
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa03e8b0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CG
ofonod[619]: PCUI: < DCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, 0xa04d508
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04eae8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0472f0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0466f0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa04f848
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047e60
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04df98
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa03e918
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n\r\n^RSSI:19\r\n
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0476e8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04dea8
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04dea8
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0476e8, 0xa04dea8
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.20.58.237
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa050210
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04d7b8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0473a8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0490a8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047e60
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04dfb8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04df98
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0476e8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04f9d8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa047ea0
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:21\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04da10
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04da10
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04da10
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa0472f0
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0472b8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0473c0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047838
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9f0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048990
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04e880
ofonod[619]: src/network.c:netreg_remove() atom: 0xa0417e0
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 5281\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 21121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,4\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04d3d8
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04dfe8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04f848
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa046728
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa049090
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0459b8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa03e918
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa04f9f0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04e880
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e420
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e420
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa0472b8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0490a8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04f868
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047e40
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa0459d8
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e8c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa051000
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa0470a8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04d780
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04f848
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa046728
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0459b8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e0e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e8c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa048060
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04e880
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046070
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e3e8
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e3e8
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046070, 0xa04e3e8
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04d798
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046728
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0473a8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047e50
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047530
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9d8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e900
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa046070
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa0470a8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 5281\r\n\r\nOK\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,4\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG:
ofonod[619]: PCUI: <  0\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 21121, -1, (null)(null)
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04d388
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04d388
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04d388
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04d388
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.21.143.70
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04d780
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa046708
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa043d78
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa04ef28
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e8e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa048978
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e900
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa0417e0
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 19,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 19
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa0476e8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04f848
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0490c8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa0466f0
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04ef48
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04e8c0
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa043dc8
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa0470a8
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04f7a8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04f7a8
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04f7a8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04f7a8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04f7a8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n^RSSI:0\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04f7a8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04f7a8, 0xa04daa8
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04f7a8, 0xa04daa8
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n^RSSI:7\r\n
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa0490c8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa043d40
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04f848
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa04e0e8
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047530
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04f7a8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9d8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e900
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04f7a8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04eb28
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: PCUI: < \r\n^MODE:0,0\r\n\r\n^MODE:0,0\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^SRVST:0\r\n\r\n^MODE:0,4\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:19\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04daa8
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04daa8
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04daa8
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.16.231.97
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa046728
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa043d40
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0473c0
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047838
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e8e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9d8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa043dc8
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048300
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n^MODE:5,4\r\n
ofonod[619]: Modem: < \r\nNO CARRIER\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04ef88
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04da00
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04ef88, 0xa04da00
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa043d78
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0473a8
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa0490a8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa047e68
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047530
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: src/gprs.c:pri_activate_callback() Activating context failed with error: Unknown error type
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9d8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e900
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04ef88
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048300
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n^MODE:5,4\r\n
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa04dfe8
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa04dfe8, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa043d40
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa0473c0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa049090
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa04ef28
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa04e8e0
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa04f9d8
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa03e900
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa04dfe8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa03ea28
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0441a0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n
ofonod[619]: PCUI: < \r\n^SRVST:0\r\n\r\n^MODE:0,4\r\n
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^RSSI:20\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04db48
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04db48
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04db48
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_activate_primary() cid 1
ofonod[619]: Modem: > AT+CGDCONT=1,"IP","3gnet"\r
ofonod[619]: Modem: < \r\nOK\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdcont_cb() ok 1
ofonod[619]: Modem: > AT+CGDATA="PPP",1\r
ofonod[619]: Modem: < \r\nCONNECT\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_cgdata_cb() ok 1
ofonod[619]: drivers/atmodem/gprs-context.c:setup_ppp() 
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 0 (Up), action: 2, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 2:CLOSED
ofonod[619]: PPP: event: 2 (Open), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_send_configure_request: current state 2:CLOSED
ofonod[619]: PPP: lcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: lcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: lcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 2
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 3
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 0:INITIAL
ofonod[619]: PPP: event: 2 (Open), action: 401, new_state: 1 (STARTING)
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 1:STARTING
ofonod[619]: PPP: event: 0 (Up), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 1:STARTING
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PCUI: < \r\n^MODE:5,6\r\n
ofonod[619]: PCUI: < \r\n^MODE:5,7\r\n\r\n+CREG: 1, A807, A75281\r\n\r\n+CGREG: 1, A807, A75281\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10965633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0441a0, 0xa04db48
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1026, new_state: 6 (REQSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_request: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 6:REQSENT
ofonod[619]: PPP: event: 6 (RCR+), action: 2008, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_send_configure_ack: current state 6:REQSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_reject: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_nak: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 9 (RCN), action: 1028, new_state: 8 (ACKSENT)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_send_configure_request: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_process_configure_ack: current state 8:ACKSENT
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 8:ACKSENT
ofonod[619]: PPP: event: 8 (RCA), action: 129, new_state: 9 (OPENED)
ofonod[619]: PPP: ipcp: pppcp_initialize_restart_count: current state 8:ACKSENT
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 4
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_connect() 
ofonod[619]: IP: 172.17.201.36
ofonod[619]: DNS: 202.106.195.68, 202.106.46.151
ofonod[619]: src/gprs.c:pri_activate_callback() 0xa04f038
ofonod[619]: PCUI: < \r\n^RSSI:17\r\n
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_deactivate_primary() cid 1
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 3 (Close), action: 8224, new_state: 4 (CLOSING)
ofonod[619]: PPP: lcp: pppcp_initialize_restart_count: current state 9:OPENED
ofonod[619]: PPP: lcp: pppcp_send_terminate_request: current state 9:OPENED
ofonod[619]: PPP: ipcp: pppcp_generate_event: current state 9:OPENED
ofonod[619]: PPP: event: 1 (Down), action: 201, new_state: 1 (STARTING)
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 5
ofonod[619]: plugins/udev.c:remove_modem() /devices/virtual/net/ppp0
ofonod[619]: PPP: lcp: pppcp_process_terminate_ack: current state 4:CLOSING
ofonod[619]: PPP: lcp: pppcp_generate_event: current state 4:CLOSING
ofonod[619]: PPP: event: 11 (RTA), action: 802, new_state: 2 (CLOSED)
ofonod[619]: PPP: lcp: pppcp_this_layer_finished: current state 2:CLOSED
ofonod[619]: PPP: gatchat/gatppp.c:ppp_enter_phase() 0
ofonod[619]: PPP: gatchat/gatppp.c:ppp_dead() 
ofonod[619]: drivers/atmodem/gprs-context.c:ppp_disconnect() 
ofonod[619]: src/gprs.c:pri_deactivate_callback() 
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa045b90
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa050760
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa050740
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa04e0c0
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa047530
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa048978
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa051000
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0441a0
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa048300
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e078
ofonod[619]: PCUI: < \r\n^MODE:5,4\r\n\r\n^MODE:5,4\r\n
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: open device failed, try to reopen itl
ofonod[619]: PCUI: < \r\n^RSSI:99\r\n\r\n^SRVST:0\r\n\r\n^MODE:0,0\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,2\r\n\r\nOK\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^R
ofonod[619]: PCUI: < SSI:21\r\n\r\n^SRVST:1\r\n\r\n^MODE:5,4\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa0485f8, (nil)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: plugins/huawei.c:huawei_disconnect() data->gc (nil)
ofonod[619]: src/modem.c:get_modem_property() modem 0xa048138 property Modem
ofonod[619]: plugins/huawei.c:open_device() Modem /dev/ttyUSB0
ofonod[619]: Reopened GPRS context channel
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa0485f8
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n^RSSI:17\r\n
ofonod[619]: PCUI: < \r\nOK\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 0, 1, 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 offline
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CFUN=5\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 3, new state: 2
ofonod[619]: src/modem.c:flush_atoms() 
ofonod[619]: src/gprs.c:gprs_context_remove() atom: 0xa046c28
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_remove() 
ofonod[619]: Unregistered handle for channel 1: 0x10007
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0485f8
ofonod[619]: src/gprs.c:gprs_remove() atom: 0xa045af0
ofonod[619]: src/message-waiting.c:mw_remove() atom: 0xa04e8d8
ofonod[619]: src/call-barring.c:call_barring_remove() atom: 0xa04dfb0
ofonod[619]: src/call-settings.c:call_settings_remove() atom: 0xa04f9d8
ofonod[619]: src/call-forwarding.c:call_forwarding_remove() atom: 0xa051010
ofonod[619]: src/ussd.c:ussd_remove() atom: 0xa047ea0
ofonod[619]: src/network.c:__ofono_netreg_remove_status_watch() 0xa0485f8
ofonod[619]: src/cbs.c:cbs_remove() atom: 0xa04e078
ofonod[619]: src/network.c:netreg_remove() atom: 0xa04e170
ofonod[619]: plugins/huawei.c:huawei_set_online() modem 0xa048138 online
ofonod[619]: PCUI: > AT+CFUN=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/modem.c:modem_change_state() old state: 2, new state: 3
ofonod[619]: drivers/atmodem/gprs-context.c:at_gprs_context_probe() 
ofonod[619]: PCUI: > AT+CREG=?\r
ofonod[619]: PCUI: < \r\n+CREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCB=?\r
ofonod[619]: PCUI: < \r\n+CSCB: (0-1)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CSCS?\r
ofonod[619]: PCUI: < \r\n+CSCS: "IRA"\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CUSD=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGDCONT=?\r
ofonod[619]: PCUI: < \r\n+CGDCONT: (1-16),"IP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"PPP",,,(0-2),(0-3)\r\n+CGDCONT: (1-16),"IPV6",,,(0-2),(0-3)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28618,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read waiting messages numbers from SIM
ofonod[619]: PCUI: > AT+CREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046ea0
ofonod[619]: PCUI: > AT+CSCB=1,"0-65535"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_got_imsi() Got IMSI: 460010031731869
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046ea0
ofonod[619]: PCUI: > AT+CGREG=?\r
ofonod[619]: PCUI: < \r\n+CGREG: (0-2)\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28617,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: Unable to read mailbox identifies from SIM
ofonod[619]: PCUI: > AT+CREG?\r
ofonod[619]: PCUI: < \r\n+CREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, (null)(null)
ofonod[619]: PCUI: > AT+CGREG=2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CGAUTO=0\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGEREP=2,1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/network.c:__ofono_netreg_add_status_watch() 0xa046ea0
ofonod[619]: PCUI: > AT+CRSM=192,28433,0,0,255\r
ofonod[619]: Registered handle for channel 1: 0x10007
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: src/message-waiting.c:mw_cphs_mwis_read_cb() No CPHS MWIS on SIM
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 21,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 21
ofonod[619]: PCUI: > AT+CPSB=1\r
ofonod[619]: PCUI: < \r\nCOMMAND NOT SUPPORT\r\n
ofonod[619]: PCUI: > AT+CGATT=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+CRSM=192,28435,0,0,255\r
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046ea0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 11121, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 1
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 17
ofonod[619]: EFspn read successfully, but couldn't parse
ofonod[619]: src/simfs.c:sim_fs_op_read_block() bufoff: 0, seekoff: 39, toread: 20
ofonod[619]: drivers/atmodem/cbs.c:at_cbs_set_topics() 
ofonod[619]: PCUI: > AT+CSCB=1\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG: 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
ofonod[619]: src/network.c:current_operator_callback() 0xa046ea0, 0xa0476e8
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: src/gprs.c:netreg_status_changed() 2
ofonod[619]: src/cbs.c:cbs_location_changed() 2, -1, -1, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 2
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+CSCB=0,"0,25,38,50,100,136,256,4352-4356"\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+CRSM=192,28437,0,0,255\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+COPS=3,2\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,2,"46001",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_numeric_cb() Cops numeric got mcc: 460, mnc: 01
ofonod[619]: PCUI: > AT+CSQ\r
ofonod[619]: PCUI: < \r\n+CSQ: 20,99\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:csq_cb() csq_cb: 20
ofonod[619]: PCUI: > AT+CGREG?\r
ofonod[619]: PCUI: < \r\n+CGREG: 2,0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:registration_status_cb() /huawei0 error 0 status 0
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046ea0, (nil)
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, 46001
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 0, 0
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046ea0, 0xa0476e8
ofonod[619]: PCUI: > AT+COPS=3,0\r
ofonod[619]: PCUI: < \r\nOK\r\n
ofonod[619]: PCUI: > AT+COPS?\r
ofonod[619]: PCUI: < \r\n+COPS: 0,0,"CHN-CUGSM",2\r\n\r\nOK\r\n
ofonod[619]: drivers/atmodem/network-registration.c:cops_cb() cops_cb: CHN-CUGSM, 460 01 2
ofonod[619]: src/network.c:current_operator_callback() 0xa046ea0, 0xa0476e8

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH v2] fix can't attach GPRS issue
  2011-06-02  9:13     ` Denis Kenzior
@ 2011-06-03  3:42       ` Zhang, Caiwen
  2011-06-02 12:22         ` Denis Kenzior
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Caiwen @ 2011-06-03  3:42 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1693 bytes --]

Hi Denis,

> >>
> >> Can you try the attached patch and tell me if this fixes your
> problem?
> >>
> >
> > Yes, it works.
> 
> From the log it isn't clear whether oFono eventually re-attaches
> automatically, does that work as well?
> 

It won't re-attach automatically. Following are the log from line 6792 to
6802 and my comment.

ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1, A807, A72B71\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1

gprs->netreg_status is 1 (NETWORK_REGISTRATION_STATUS_REGISTERED).

ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1

gprs->driver_attached is set to TURE. From now on, unless the modem unregistered,
gprs_netreg_update() will always return before execute gprs->driver->set_attached()
because (gprs->driver_attached == attach).

ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
ofonod[619]: PCUI: > AT+CGATT=0\r
ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n\r\nOK\r\n
ofonod[619]: src/gprs.c:netreg_status_changed() 1
ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1, (null)(null)
ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0

gprs->driver_attached is used to indicated (CGATT) status, its value shouldn't be changed before 
gprs->driver->set_attached() execute completely.
In this case, its value happen to be changed during gprs->driver->set_attached() is executed. So
its value is not the same as (CGATT) status. 

best regards
Caiwen


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2] fix can't attach GPRS issue
  2011-06-07  7:24           ` Zhang, Caiwen
@ 2011-06-06  2:00             ` Denis Kenzior
  0 siblings, 0 replies; 8+ messages in thread
From: Denis Kenzior @ 2011-06-06  2:00 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1352 bytes --]

Hi Caiwen,

> gprs_netreg_update() is the only place to change CGATT automatically.
> 
> Following are the code of gprs_netreg_update().
> 
> 	ofono_bool_t attach;
> 
> 	attach = gprs->netreg_status == NETWORK_REGISTRATION_STATUS_REGISTERED;
> 
> 	attach = attach || (gprs->roaming_allowed &&
> 		gprs->netreg_status == NETWORK_REGISTRATION_STATUS_ROAMING);
> 
> 	attach = attach && gprs->powered;
> 
> 	if (gprs->driver_attached == attach)
> 		return;
> 
> As my comment above, because gprs->netreg_status is 1(NETWORK_REGISTRATION_STATUS_REGISTERED)
> and gprs->driver_attached is TRUE. So (gprs->driver_attached == attach). This function always
> return here, unless, the value of gprs->netreg_status or gprs->driver_attached is changed.
> 

This is by design, I don't see anything inherently wrong here.
Remember, gprs_netreg_update is called from many places and this sanity
check is needed.

> As gprs_netreg_update() always returns here, so gprs->driver_attached won't be changed.
> So unless the network registration status changes to unregistered then registered again,
> it won't attach GPRS again.
> 

But the CREG status is being toggled like crazy. Once CREG goes to
unregistered / searching we detach and set driver_attached to FALSE.  It
sounds like your explanation isn't correct.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH v2] fix can't attach GPRS issue
  2011-06-02 12:22         ` Denis Kenzior
@ 2011-06-07  7:24           ` Zhang, Caiwen
  2011-06-06  2:00             ` Denis Kenzior
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Caiwen @ 2011-06-07  7:24 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 4522 bytes --]

Hi Denis,

> >>>> Can you try the attached patch and tell me if this fixes your
> >> problem?
> >>>>
> >>>
> >>> Yes, it works.
> >>
> >> From the log it isn't clear whether oFono eventually re-attaches
> >> automatically, does that work as well?
> >>
> >
> > It won't re-attach automatically. Following are the log from line
> 6792 to
> > 6802 and my comment.
> >
> > ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 1,
> A807, A72B71\r\n
> > ofonod[619]: src/gprs.c:netreg_status_changed() 1
> >
> > gprs->netreg_status is 1 (NETWORK_REGISTRATION_STATUS_REGISTERED).
> >
> > ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1,
> (null)(null)
> > ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 1
> >
> > gprs->driver_attached is set to TURE. From now on, unless the modem
> unregistered,
> > gprs_netreg_update() will always return before execute gprs->driver-
> >set_attached()
> > because (gprs->driver_attached == attach).
> 
> So to me it doesn't look like your interpretation is correct:
> 
> At line 6754:
> 
> ofonod[619]: PCUI: > AT+CGATT=1\r
> ofonod[619]: PCUI: < \r\nOK\r\n
> ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
> 
> This is issued in the initial gprs_netreg_update called from
> netreg_watch.
> 
> Then we issue a CGREG query from gprs_attach_callback at line 6768:
> 
> ofonod[619]: PCUI: > AT+CGREG?\r
> ofonod[619]: PCUI: < \r\n+CGREG: 2,1, A807, 2B71\r\n\r\nOK\r\n
> 
> So driver_attached is TRUE here
> 
> At line 6778 the modem has a nervous tick:
> ofonod[619]: PCUI: < \r\n^SRVST:1\r\n\r\n+CREG: 2\r\n\r\n+CGREG:
> 2\r\n\r\n^SRVST:2\r\n\r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG: 0\r\n
> 
> And the first CREG: 2 causes us to issue another gprs_netreg_update
> which issues a detach at line 6797:
> 
> ofonod[619]: PCUI: > AT+CGATT=0\r
> ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG:
> 0\r\n\r\nOK\r\n
> 
> The subsequent CGREG should simply update our Attached attribute to
> False.  The next CREG will trigger another gprs_netreg_update, which
> should in turn set the RECHECK flag to TRUE. And the subsequent CGREG
> has no effect.
> 
> With my earlier patch, you should not have any changes to
> driver_attached until the CGATT=0 returns, which should trigger another
> CGREG update and assuming the RECHECK flag was set, another call to
> gprs_update_netreg.
> 
> Can you investigate why this isn't happening?  Instrumentation of the
> settings of driver_attached and flags would be helpful.
> 

gprs_netreg_update() is the only place to change CGATT automatically.

Following are the code of gprs_netreg_update().

	ofono_bool_t attach;

	attach = gprs->netreg_status == NETWORK_REGISTRATION_STATUS_REGISTERED;

	attach = attach || (gprs->roaming_allowed &&
		gprs->netreg_status == NETWORK_REGISTRATION_STATUS_ROAMING);

	attach = attach && gprs->powered;

	if (gprs->driver_attached == attach)
		return;

As my comment above, because gprs->netreg_status is 1(NETWORK_REGISTRATION_STATUS_REGISTERED)
and gprs->driver_attached is TRUE. So (gprs->driver_attached == attach). This function always
return here, unless, the value of gprs->netreg_status or gprs->driver_attached is changed.

As gprs_netreg_update() always returns here, so gprs->driver_attached won't be changed.
So unless the network registration status changes to unregistered then registered again,
it won't attach GPRS again.

> >
> > ofonod[619]: PCUI: < \r\n+CRSM: 106,130,""\r\n\r\nOK\r\n
> > ofonod[619]: PCUI: > AT+CGATT=0\r
> > ofonod[619]: PCUI: < \r\n+CREG: 1, A807, A72B71\r\n\r\n+CGREG:
> 0\r\n\r\nOK\r\n
> > ofonod[619]: src/gprs.c:netreg_status_changed() 1
> > ofonod[619]: src/cbs.c:cbs_location_changed() 1, 43015, 10955633, -1,
> (null)(null)
> > ofonod[619]: src/gprs.c:ofono_gprs_status_notify() /huawei0 status 0
> > ofonod[619]: src/gprs.c:gprs_attach_callback() /huawei0 error = 0
> >
> > gprs->driver_attached is used to indicated (CGATT) status, its value
> shouldn't be changed before
> > gprs->driver->set_attached() execute completely.
> > In this case, its value happen to be changed during gprs->driver-
> >set_attached() is executed. So
> > its value is not the same as (CGATT) status.
> 
> The value of driver_attached is not about the current CGATT status, but
> the pending status of set_attached to the driver.  While related, they
> are not the same.
> 

best regards
Caiwen

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-06-07  7:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-10  6:38 [PATCH v2] fix can't attach GPRS issue Caiwen Zhang
2011-06-02  7:51 ` Denis Kenzior
2011-06-03  2:15   ` Zhang, Caiwen
2011-06-02  9:13     ` Denis Kenzior
2011-06-03  3:42       ` Zhang, Caiwen
2011-06-02 12:22         ` Denis Kenzior
2011-06-07  7:24           ` Zhang, Caiwen
2011-06-06  2:00             ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.