Alejandro García | 3 Jul 01:17

Add function in gnokii windows

hi.  i,ve benn trying to add a new function in gnokii on Windows, when
i compile everything is fine, generates the .lib file perfect using
visual studio 2005, but then, when i build a .so object file that
includes some .C files that i made wich use the functions on the .lib
file  something seems to be wrong. The .so object file is generated
satisfactorily but it does find the function i put in.  The function
that i put in works  because i compiled gnokii in linux and it works
perfectly, and the code have things compatibly in both windows and
linux. It seems like the new fuction is not found or something like
that, the error that gave me using the .so file is

.so: 127: No se encontró el proceso especificado.  .so (LoadError)

and if i coment the call to my new function it does not give me that
error in the generated .so file.

I just wanted to know if there is an extra step for adding functions
to gnokii library in windows.  In that case what are the steps to do
it.

Thanks!!! expect an answer.
Daniele Forsi | 1 Jul 23:58

Re: Nokia 3110c not identified by gnokii

2009/6/29 Ashif Zubair:

> serial_baudrate = 460800

> Couldn't open ATBUS device: Result too large

are you sure that 460800 is a valid baud rate for your setup?

try the gnokii default value of 19200, virtual com ports are likely to
ignore the actual value anyway

--

-- 
Daniele Forsi
Vieri | 1 Jul 18:17
Favicon

gnokii getsms

Hi,

Could you please have a look at the attached files where I'm trying to get the first SMS message from a Nokia
device. The SIM is supposed to have at least one SMS that I should be able to see.

What is the "showsmsfolderstatus" log I'm attaching actually saying when it says "SM 0" and "ME 0"? Is it
reporting that there are no SMS messages available? If so, what else could I try (because if I take the SIM
card from the device - which is a "trac" or "GSM gateway", not a cellphone - and insert it into a real phone, I
get see the messages).

Thanks,

Vieri

      
Attachment (gnokii_getsms.tgz): application/x-gzip-compressed, 2341 bytes
_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users
Daniele Forsi | 1 Jul 17:55

Switching source repository to git

The gnokii project has moved the source repository from CVS to GIT.

For people that want to compile the latest version this only means
that a different command is needed to get the sources.
The main sources that were in the CVS module "gnokii" (libgnokii,
gnokii, smsd, xgnokii) can be downloaded with:
git clone git://git.savannah.nongnu.org/gnokii.git
A web interface is at http://git.savannah.gnu.org/cgit/gnokii.git/

The other CVS modules have been migrated to separated git repositories:
git clone git://git.savannah.nongnu.org/gnokii/$module.git
web interface: http://git.savannah.gnu.org/cgit/gnokii/$module.git/
Replace $module with gnapplet, gnocky, gnokii-artwork, gnokii-extras,
gnokiifs, knokiisync, zphone

For more details see http://www.gnokii.org/git.shtml
--

-- 
Daniele Forsi
nuar deniel | 1 Jul 11:06
Favicon

Re: GSM Modems

>Hello Blurry,

Hi Michael!

>
>> Thank you for the config file u posted earlier.. I have one question to
>> ask.
>>
>> This is my scenario. I am developing a monitoring system which sends
>> out SMSes to a number of receipients by Linux Crontab. My query is,
>> would the Fastrack Supreme Modem queue the outbound SMSes as the
>> Crontab would send the gnokii --sendsms command to the modem in quick
>> succession.
>
>I don't think so. Fasttrack modems interact with your computer just like
>a 56k modem - you can't stack commands on those, and the same goes for
>Fasttrack modems.
>
>Gnokii/SMSd will do queuing for you - it might be worth checking that
>out as it would be easiest to implement. I know that I have no issues
>with this when I'm using Nagios which handles sending out my alerts from
>my monitoring servers. This is because I run gnokii/smsd in FILE mode.
>It picks up individual text files that get dropped into /var/spool/sms
>by Nagios, which contain the contact number and the notification
>information. Gnokii/SMSd runs in Daemon mode and monitors the directory
>- when a new file is written it sends it as SMS and deletes the file,
>then moves on to the next one - perfect system for queueing.
>
>Here is a snippet of my /etc/init.d/smsd startup file:
>
>        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec
>$DAEMON -- -m file -c /var/spool/sms -l /usr/lib/smsd &
>
>You can see the -m and -c options that set the desired behaviour.
>
>If you're programming a monitoring system, you might want to check out
>Nagios - it just works, and is really easy to get working with SMS/GSM
>modems - http://www.nagios.org. Afterall, there's no point re-inventing
>the wheel.. The config to get Nagios to use Smsd would be similar to
>this:
>
>In misccommands.cfg:
>define command{
>        command_name                    host-notify-by-sms
>        command_line                    /usr/bin/printf
>"$CONTACTPAGER$\n$NOTIFICATIONTYPE$: $HOSTNAME$ is $HOSTSTATE$" > /var/spool/sms/`date +%d%m%Y%H%M%S%N`
>}
>define command{
>        command_name                    notify-by-sms
>        command_line                    /usr/bin/printf
>"$CONTACTPAGER$\n$NOTIFICATIONTYPE$: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" > /var/spool/sms/`date +%d%m%Y%H%M%S%N`
>}
>
>You can see all that Nagios does is dump notifications into
>/var/spool/sms. The SMS Daemon picks them up and sends them one at a
>time. You could tell your Monitoring System to do the same thing as
>Nagios, just dump the Cell # in the top line of a file, followed by the
>notification message, and move on to the next one in a new file.. Let
>Gnokii/SMSD take care of the rest.
>
>I hope that helps ;)



Thank you very much for your helpful and precise reply! I'm sorry for this late reply, but
the last two weeks I am quite busy finishing the network monitoring system I am currently
developing.

Thank you also for your info on Nagios, but what I am developing is quite different from Nagios. Thanx for the recommendation though.

I would appreciate it if you could help me with this one thing I am stuck with, the gnokii-smsd.

I followed your post with the gnokii-smsd, and it works well for a week. In the second week, I encounter this error:

[code]
SMS Send failed (Unknown error - well better than nothing!!)
[/code]



The full log is attached below: --

[code]
bash~# echo "Test" | gnokii --sendsms xxxxxxxxxx

GNOKII Version 0.6.27
LOG: debug mask is 0x1
Config read from file /root/.gnokiirc.
phone instance config:
model = AT
port = /dev/ttyS0
connection = serial
initlength = default
serial_baudrate = 115200
serial_write_usleep = -1
handshake = hardware
require_dcd = 0
smsc_timeout = 10
rfcomm_channel = 0
sm_retry = 0
Initializing AT capable mobile phone ...
Serial device: opening device /dev/ttyS0
Serial device: setting RTS to high and DTR to high
Message sent: 0x00 / 0x0004
41 54 5a 0d                                     | ATZ
write: [ATZ<cr>]
read : [ATZ<cr><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x000a
02 41 54 5a 0d 0d 0a 4f 4b 0d                   |  ATZ   OK
Received message type 00
Message sent: 0x00 / 0x0005
41 54 45 31 0d                                  | ATE1
write: [ATE1<cr>]
read : [ATE1<cr><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x000b
02 41 54 45 31 0d 0d 0a 4f 4b 0d                |  ATE1   OK
Received message type 00
Message sent: 0x00 / 0x000a
41 54 2b 43 4d 45 45 3d 31 0d                   | AT+CMEE=1
write: [AT+CMEE=1<cr>]
read : [AT+CMEE=1<cr><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x0010
02 41 54 2b 43 4d 45 45 3d 31 0d 0d 0a 4f 4b 0d |  AT+CMEE=1   OK
Received message type 00
Message sent: 0x06 / 0x0007
41 54 2b 47 4d 4d 0d                            | AT+GMM
write: [AT+GMM<cr>]
read : [AT+GMM<cr>AT+CPMS?<cr><cr><lf>+CPMS: "SM",0,50,"SM",0,50,"SM",0,50<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x06 / 0x003e
02 41 54 2b 47 4d 4d 0d 41 54 2b 43 50 4d 53 3f |  AT+GMM AT+CPMS?
0d 0d 0a 2b 43 50 4d 53 3a 20 22 53 4d 22 2c 30 |    +CPMS: "SM",0
2c 35 30 2c 22 53 4d 22 2c 30 2c 35 30 2c 22 53 | ,50,"SM",0,50,"S
4d 22 2c 30 2c 35 30 0d 0a 0d 0a 4f 4b 0d       | M",0,50    OK
Received message type 06
Message sent: 0x06 / 0x0008
41 54 2b 43 47 4d 49 0d                         | AT+CGMI
write: [AT+CGMI<cr>]
read : [AT+CGMI<cr><cr><lf>iWOW<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x06 / 0x0016
02 41 54 2b 43 47 4d 49 0d 0d 0a 69 57 4f 57 0d |  AT+CGMI   iWOW
0a 0d 0a 4f 4b 0d                               |    OK
Received message type 06
Message sent: 0x61 / 0x0009
41 54 2b 43 53 43 53 3f 0d                      | AT+CSCS?
write: [AT+CSCS?<cr>]
read : [AT+CSCS?<cr><cr><lf>+CSCS: "PCCP437"<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x61 / 0x0023
02 41 54 2b 43 53 43 53 3f 0d 0d 0a 2b 43 53 43 |  AT+CSCS?   +CSC
53 3a 20 22 50 43 43 50 34 33 37 22 0d 0a 0d 0a | S: "PCCP437"
4f 4b 0d                                        | OK
Received message type 61
Initialisation completed
Message sent: 0x61 / 0x000a
41 54 2b 43 53 43 53 3d 3f 0d                   | AT+CSCS=?
write: [AT+CSCS=?<cr>]
read : [AT+CSCS=?<cr><cr><lf>+CSCS: "GSM","IRA","PCCP437","PCDN","8859-1","HEX","UCS2"<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x61 / 0x004d
02 41 54 2b 43 53 43 53 3d 3f 0d 0d 0a 2b 43 53 |  AT+CSCS=?   +CS
43 53 3a 20 22 47 53 4d 22 2c 22 49 52 41 22 2c | CS: "GSM","IRA",
22 50 43 43 50 34 33 37 22 2c 22 50 43 44 4e 22 | "PCCP437","PCDN"
2c 22 38 38 35 39 2d 31 22 2c 22 48 45 58 22 2c | ,"8859-1","HEX",
22 55 43 53 32 22 0d 0a 0d 0a 4f 4b 0d          | "UCS2"    OK
Received message type 61
Message sent: 0x00 / 0x000e
41 54 2b 43 53 43 53 3d 22 47 53 4d 22 0d       | AT+CSCS="GSM"
write: [AT+CSCS="GSM"<cr>]
read : [AT+CSCS="GSM"<cr><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x0014
02 41 54 2b 43 53 43 53 3d 22 47 53 4d 22 0d 0d |  AT+CSCS="GSM"
0a 4f 4b 0d                                     |  OK
Received message type 00
Message sent: 0x23 / 0x0009
41 54 2b 43 53 43 41 3f 0d                      | AT+CSCA?
write: [AT+CSCA?<cr>]
read : [AT+CSCA?<cr><cr><lf>+CSCA: "+xxxxxxxxxxx",145<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x23 / 0x002c
02 41 54 2b 43 53 43 41 3f 0d 0d 0a 2b 43 53 43 |  AT+CSCA?   +CSC
41 3a 20 22 2b 36 30 31 32 30 30 30 30 30 31 35 | A: "+60120000015
22 2c 31 34 35 0d 0a 0d 0a 4f 4b 0d             | ",145    OK
Received message type 23
General Data Coding
dcs: 0x0
Length: 0x4
user_data_length: 0x4
ValidityIndicator: 2
user_data: D4F29C0E
Sending
Message sent: 0x63 / 0x000a
41 54 2b 43 4d 47 46 3d 30 0d                   | AT+CMGF=0
write: [AT+CMGF=0<cr>]
read : [AT+CMGF=0<cr><cr><lf>OK<cr><lf>]
Message received: 0x63 / 0x0010
02 41 54 2b 43 4d 47 46 3d 30 0d 0d 0a 4f 4b 0d |  AT+CMGF=0   OK
Received message type 63
PDU mode set
Sending initial sequence
Message sent: 0x64 / 0x000b
41 54 2b 43 4d 47 53 3d 31 37 0d                | AT+CMGS=17
write: [AT+CMGS=17<cr>]
read : [AT+CMGS=17<cr><cr><lf>> ]
Message received: 0x64 / 0x000f
01 41 54 2b 43 4d 47 53 3d 31 37 0d 0d 0a 3e    |  AT+CMGS=17   >
Received message type 64
Got response 0
Sending frame: 07910621000010F511000A8110322685480000AA04D4F29C0E
Message sent: 0x21 / 0x0033
30 37 39 31 30 36 32 31 30 30 30 30 31 30 46 35 | 07910621000010F5
31 31 30 30 30 41 38 31 31 30 33 32 32 36 38 35 | 11000A8110322685
34 38 30 30 30 30 41 41 30 34 44 34 46 32 39 43 | 480000AA04D4F29C
30 45 1a                                        | 0E
write: [07910621000010F511000A8110322685480000AA04D4F29C0E^Z]
read : [^^À910621000010F511000A8110322685480000AA04D4F29C0E<cr><lf>+CMS ERROR: 50304<cr><lf>]
Message received: 0x21 / 0x0047
04 c4 80 39 31 30 36 32 31 30 30 30 30 31 30 46 |    910621000010F
35 31 31 30 30 30 41 38 31 31 30 33 32 32 36 38 | 511000A811032268
35 34 38 30 30 30 30 41 41 30 34 44 34 46 32 39 | 5480000AA04D4F29
43 30 45 0d 0a 2b 43 4d 53 20 45 52 52 4f 52 3a | C0E  +CMS ERROR:
20 35 30 33 30 34 0d                            |  50304
Received message type 21
SMS Send failed (Unknown error - well better than nothing!!)
Serial device: closing device
[/code]


I've tried in vain to trace the problem. The only stumbling block with the
network monitoring system I am developing is with gnokii (which I am not
good at at all). Your help would be a life saver. ;-)

Thanx a million in advance.

>
>> Thank you in advance for your reply. Your help is highly appreciated.
>
>No problem, happy to do so. Nice to see polite people still exist on
>mailing lists ;-)


Thank you Michael for your help and time. ;-)


Yours Sincerely,
Daniel Mejia
NADI ICT Engineering

_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users
Vieri | 1 Jul 09:45
Favicon

gnokii and Nokia Card Phone RPM-3 GSM900/1800

Hello,

I'm trying to send a basic text SMS with gnokii connected via serial cable to a Nokia Card Phone RPM-3 GSM900/1800.

I am not able to send anything because it seems that the AT command sequence may be wrong for this particular
model. I am using the default gnokiirc with model=AT and port=/dev/ttyS0 under Linux.

From previous manual research in a Windows environment (hyperterminal), it was determined that the
correct sequence of commands to send an SMS is:

AT+CMGS=?
AT+CMGF=1
AT+CMGS="<destination_number>"
"MESSAGE"
<ctrl-Z/ESC>

Gnokii is failing as shown in the log files I'm attaching.

I've also tried the -C 0,1,2,3 option with the gnokii --sendsms command line but I'm still not able to send a message.
Note: I am not using smsd, just "gnokii --sendsms ...".

Any ideas?
How can I customize gnokii's AT command sequence?

Regards,

Vieri

      
Attachment (gnokii_sendsms.tgz): application/octet-stream, 4840 bytes
_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users
Ladislav Michl | 1 Jul 01:17
Favicon

Setting security code

Hi there!

So it seems my old phone is going to die, so I resurrected new one. Nokia 6021.
Unfortunately security code was not set to sane default "12345". Therefore
I compiled gnokii for MacOSX (iBook has builtin Bluetooth) and tried to set
security code. To my surprise, relevant code path was commented out, so
I uncommented it and gnokii did its job.
What is the reason for FIXME bellow?

Index: gnokii/gnokii-security.c
===================================================================
RCS file: /sources/gnokii/gnokii/gnokii/gnokii-security.c,v
retrieving revision 1.14
diff -u -r1.14 gnokii-security.c
--- gnokii/gnokii-security.c	11 Nov 2008 18:01:43 -0000	1.14
+++ gnokii/gnokii-security.c	30 Jun 2009 21:05:59 -0000
@@ -192,10 +192,8 @@
 		security_code.type = GN_SCT_Pin2;
 	else if (!strcmp(type, "PUK2"))
 		security_code.type = GN_SCT_Puk2;
-	/* FIXME: Entering of security_code does not work :-(
 	else if (!strcmp(type, "security_code"))
-		security_code.type = GN_SCT_security_code;
-	*/
+		security_code.type = GN_SCT_SecurityCode;
 	else
 		return entersecuritycode_usage(stderr, -1);

@@ -281,10 +279,8 @@
 		security_code.type = GN_SCT_Pin2;
 	else if (!strcmp(type, "PUK2"))
 		security_code.type = GN_SCT_Puk2;
-	/* FIXME: Entering of security_code does not work :-(
 	else if (!strcmp(type, "security_code"))
-		security_code.type = GN_SCT_security_code;
-	*/
+		security_code.type = GN_SCT_SecurityCode;
 	else
 		return changesecuritycode_usage(stderr, -1);

Best regards,
	ladis 
siva kumar | 30 Jun 18:36
Favicon

Nokia 2100 support

Hi,

whether nokia 2100 supports fbus? if so whether gnokii support Nokia 2100 fbus protocol?

I have made hardware to interface mobile to micro controller. i tried sending 0x55 128 times i could not see any response from mobile.

I tried sending fbus command for receiving h/w and s/w version after sending 128 times 0x55. still no response.

i don't know whether any delay required between two fbus commands.
please help me in this regard.

Siva






_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users
hewital | 23 Jun 21:07

Re: recieve sms gnokii, Vol 79, Issue 15

Sorry my ignorance but where is smsd?. I do not see it.  And what smsd does ?  Im a developer. Thanks!!
------Mensaje original------
De: gnokii-users-request <at> nongnu.org
Remitente:gnokii-users-bounces+hewital=gmail.com <at> nongnu.org
Para:gnokii-users <at> nongnu.org
Responder a:gnokii-users <at> nongnu.org
Asunto: gnokii-users Digest, Vol 79, Issue 15
Enviado: 23 Jun, 2009 12:00

Send gnokii-users mailing list submissions to
	gnokii-users <at> nongnu.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.nongnu.org/mailman/listinfo/gnokii-users
or, via email, send a message with subject or body 'help' to
	gnokii-users-request <at> nongnu.org

You can reach the person managing the list at
	gnokii-users-owner <at> nongnu.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of gnokii-users digest..."

Today's Topics:

   1. SMS recieve gnokii (hewital <at> gmail.com)
   2. Re: SMS recieve gnokii (Daniele Forsi)

----------------------------------------------------------------------

Message: 1
Date: Tue, 23 Jun 2009 00:40:40 -0700
From: hewital <at> gmail.com
Subject: SMS recieve gnokii
To: gnokii-users <at> nongnu.org
Message-ID:
	<20135834.1678031245742840096.JavaMail.nabble <at> isper.nabble.com>
Content-Type: text/plain; charset=us-ascii

Hi i need  to know how to read a sms from my phone (motorola RZR) without having to know the memory location of
the sms?   or there is a way that i can obtain a list of locations?

------------------------------

Message: 2
Date: Tue, 23 Jun 2009 12:37:00 +0200
From: Daniele Forsi <dforsi <at> gmail.com>
Subject: Re: SMS recieve gnokii
To: "Discussion forum for gnokii users." <gnokii-users <at> nongnu.org>
Message-ID:
	<4fbb9b2c0906230337i239107b8vf2db5b9255074286 <at> mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

2009/6/23 <hewital@...>

> Hi i need  to know how to read a sms from my phone (motorola RZR)
> without having to know the memory location of the sms?

that's what smsd does
please tell us if you need to run smsd with -b MT
so we can add this to http://wiki.gnokii.org/index.php/MotorolaConfig
or add it yourself

>  or there is a way that i can obtain a list of locations?

not with current gnokii driver

--
Daniele Forsi

------------------------------

_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users

End of gnokii-users Digest, Vol 79, Issue 15
********************************************


Enviado desde mi dispositivo movil BlackBerry® de Digitel.
_______________________________________________
gnokii-users mailing list
gnokii-users <at> nongnu.org
http://lists.nongnu.org/mailman/listinfo/gnokii-users
hewital | 23 Jun 09:36

SMS recieve gnokii

Hi i need  to know how to read a sms from my phone (motorola RZR) without having to know the memory location of
the sms?   or there is a way that i can obtain a list of locations?
Leszek Krupinski | 20 Jun 10:29

gnokii identifies Nokia E50, but still gives Initialization failed (11)

Hi there

I've received used Nokia E50, and I've decided to use it as a SMS
gateway. I've bought CA-70 cable and started to play with gnokii. I
had some troubles finding correct combination of modprobe's to get the
tty working, but I did it finally. Standard gnokii from Debian testing
couldn't connect to the phone at all, so I got CVS version, and this
got me somewhere. With --identify I have some output, but only
partial, and it still ends with "Initialization failed (11)" error.
Here's the debug output:

GNOKII Version 0.6.28cvs
LOG: debug mask is 0x1
Config read from file /home/leafnode/.gnokiirc.
phone instance config:
model = AT
port = /dev/ttyUSB0
connection = serial
initlength = default
serial_baudrate = 19200
serial_write_usleep = -1
handshake = software
require_dcd = 0
smsc_timeout = 10
rfcomm_channel = 0
sm_retry = 0
Initializing AT capable mobile phone ...
Serial device: opening device /dev/ttyUSB0
Serial device: setting RTS to high and DTR to high
Message sent: 0x00 / 0x0004
41 54 5a 0d                                     | ATZ
write: [ATZ<cr>]
read : [ATZ<cr>ATE1<cr>AT+CMEE=1<cr>AT+GMM<cr>AT+CGMM<cr><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x0028
02 41 54 5a 0d 41 54 45 31 0d 41 54 2b 43 4d 45 |  ATZ ATE1 AT+CME
45 3d 31 0d 41 54 2b 47 4d 4d 0d 41 54 2b 43 47 | E=1 AT+GMM AT+CG
4d 4d 0d 0d 0a 4f 4b 0d                         | MM   OK
Received message type 00
read : [OK<cr><lf>]
Message received: 0x00 / 0x0004
02 4f 4b 0d                                     |  OK
Received message type 00
read : [OK<cr><lf>]
Message received: 0x00 / 0x0004
02 4f 4b 0d                                     |  OK
Received message type 00
read : [Nokia E50<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x0011
02 4e 6f 6b 69 61 20 45 35 30 0d 0a 0d 0a 4f 4b |  Nokia E50    OK
0d                                              |
Received message type 00
read : [Nokia E50<cr><lf><cr><lf>OK<cr><lf>]
Message received: 0x00 / 0x0011
02 4e 6f 6b 69 61 20 45 35 30 0d 0a 0d 0a 4f 4b |  Nokia E50    OK
0d                                              |
Received message type 00
Message sent: 0x00 / 0x0005
41 54 45 31 0d                                  | ATE1
write: [ATE1<cr>]
Message sent: 0x00 / 0x000a
41 54 2b 43 4d 45 45 3d 31 0d                   | AT+CMEE=1
write: [AT+CMEE=1<cr>]
Message sent: 0x06 / 0x0007
41 54 2b 47 4d 4d 0d                            | AT+GMM
write: [AT+GMM<cr>]
Message sent: 0x06 / 0x0008
41 54 2b 43 47 4d 4d 0d                         | AT+CGMM
write: [AT+CGMM<cr>]
Initialization failed (11)
Serial device: closing device
Telephone interface init failed: Command timed out.
Quitting.
Cannot unlock device.
Command timed out.

As you can see, the phone replies to only some of the AT commands.
What could be the problem - phone or software?

Regards
   Leszek Krupiński

Gmane