The C Source, Patches and (shudder!) Bugs
Post Reply
jianwei
Posts: 3
Joined: 09 Jan 2015, 10:57

ZTE MF195E orange 3G dongle no response when run "ATDT *99#"

Post by jianwei » 09 Jan 2015, 11:05

use the below script
########################################################
# ZTE MF195

DefaultVendor = 0x19d2
DefaultProduct= 0x1580

TargetVendor = 0x19d2
TargetProduct= 0x1581

#MessageContent="5553424312345678000000000000061b000000020000000000000000000000"

MessageEndpoint= 0x01
MessageContent ="555342431849128600000000000008ff000000000000030000000000000000"

CheckSuccess=20

but print the "non EVDO Dongle detected";

Jan 8 16:29:00 daemon notice syslog: [3G DBG] tty found:[1]
Jan 8 16:29:00 daemon notice syslog: [3G DBG] No pin be checked
Jan 8 16:29:00 daemon notice syslog: [3G DBG] buff:[]
Jan 8 16:29:00 daemon notice syslog: [3G DBG] pin_need:[1]
Jan 8 16:29:00 daemon notice syslog: [3G DBG] 1375 > user web
Jan 8 16:29:00 daemon notice syslog: [3G DBG] 1443 > non EVDO Dongle detected
Jan 8 16:29:00 daemon notice syslog: pppd 2.4.1 started by admin, uid 0
Jan 8 16:29:00 daemon notice syslog: PPPOE: Start to connect ...
Jan 8 16:29:12 local2 err chat[2305]: Failed
Jan 8 16:29:12 daemon err syslog: Connect script failed
Jan 8 16:29:12 daemon info kernel: option_close

who help me ,thank u very much
Last edited by jianwei on 28 Jan 2015, 04:11, edited 1 time in total.

Josh
Site Admin
Posts: 6570
Joined: 03 Nov 2007, 00:30

Re: ZTE MF195E 3G dongle 19d2:1580 non EVDO Dongle detected

Post by Josh » 14 Jan 2015, 00:10

Does the mode of the dongle change? Do you get the target USB ID?

You can check with "lsusb".

jianwei
Posts: 3
Joined: 09 Jan 2015, 10:57

Re: ZTE MF195E 3G dongle 19d2:1580 non EVDO Dongle detected

Post by jianwei » 28 Jan 2015, 04:09

yes.at last i used the below script
# ZTE MF192

DefaultVendor= 0x19d2
DefaultProduct=0x1517

TargetVendor= 0x19d2
TargetProductList="1518,1519"

MessageContent="5553424312345678000000000000061b000000020000000000000000000000"

NeedResponse=1

CheckSuccess=20

1. mode-switch successfully
2. but run the gprs-chat,found some error when run "ATDT *99#"

# cat /var/modem_debug
rAT
OK
AT+CPIN?
+CPIN: SIM PIN

OK
ATH
OK
ATE1
OK
AT+CGDCONT=1,"IP","orangeciweb"
OK
ATDT*99#

who know the reason. thank u very much

Josh
Site Admin
Posts: 6570
Joined: 03 Nov 2007, 00:30

Re: ZTE MF195E orange 3G dongle no response when run "ATDT *

Post by Josh » 28 Jan 2015, 18:25

Try ATD instead of ATDT.

If that does not work, you may be using the wrong port. Usually, there is more than one ttyUSB port.

If you post the full output of "sudo lsusb -v -d 19d2:1581" we can check which is the right one.

jianwei
Posts: 3
Joined: 09 Jan 2015, 10:57

Re: ZTE MF195E orange 3G dongle return error when run "AT+CP

Post by jianwei » 13 Feb 2015, 11:53

ZTE 192 dongle:

when set the AT+CPIN="1234" >/dev/ttyACM0 in the gprs-chat ,return error.

who know the reason why can't set the AT+CPIN="1234" into the ZTE 192 dongle.


Thank u

Josh
Site Admin
Posts: 6570
Joined: 03 Nov 2007, 00:30

Re: ZTE MF195E orange 3G dongle no response when run "ATDT *

Post by Josh » 13 Feb 2015, 18:51

You can try to 'escape' the quote marks:

AT+CPIN=\"1234\"

Post Reply