Re: Snapshots aren't being built (Was: Re: smsc_at2.c at+cmms=2)

2002-04-19 Thread Bruno David Simões Rodrigues

On Fri, 2002-04-19 at 11:26, David Holland wrote:
 On Thu, Apr 18, 2002 at 04:21:08PM +0100, Bruno Rodrigues wrote:
  something must gone wrong...
  snapshot-timestamp says Apr 09,  snapshot doesn't have my patch
  and I've commited it on Apr 10
 
 OK. There was a missing /row in userguide.xml. I checked in a fix and
 poked the snapshot script.
 
 (Don't you guys try to build the docs before checking them in?!?!)

Shouldn't the scripts detect the error and send us an email to 
devel-reports ? ;)

 
 Cheers,
 Dave
 -- 
 David Holland   =*=   Systems Manager   =*=   tel: +44 01223 478900
 http://www.3glab.com/   =*= 3G Lab, UK  =*=   fax: +44 01223 478901
 I had problems with a ferrous one that I couldn't iron out.
 






Re: Snapshots aren't being built (Was: Re: smsc_at2.c at+cmms=2)

2002-04-19 Thread David Holland

On Fri, Apr 19, 2002 at 05:14:44PM +0100, Bruno David Simões Rodrigues wrote:
 Shouldn't the scripts detect the error and send us an email to 
 devel-reports ? ;)

Yes :-(

Dave
-- 
David Holland   =*=   Systems Manager   =*=   tel: +44 01223 478900
http://www.3glab.com/   =*= 3G Lab, UK  =*=   fax: +44 01223 478901
Ogden's Law: The sooner you fall behind, the more time you have to catch up.




smsc_at2.c at+cmms=2

2002-04-18 Thread Andrea Viscovich

Inside the code there is a call to at+cmms=2
if(list_len(privdata-outgoing_queue)  1)
at2_send_modem_command(privdata, AT+CMMS=2, 0, 0);
On all wavecom this generates an error response.
Looking to at manual (wavecom) there is no mention to this.
Does anybody know anything about it?
Andrea Viscovich

Email2Mobile: [EMAIL PROTECTED]
Web: http://www.smsprof.it






RE: smsc_at2.c at+cmms=2

2002-04-18 Thread Oded Arbel


I don't know what is +CMMS (IIRC it isn't mentioned on the wavecom
manual),  what its suposed to do or why Bruno put it in, but latest CVS
has a configuration for that (in modems.conf) that is disabled by
default for most modem types (only enabled for nokia phone in the sample
modems.conf).

--
Oded Arbel
m-Wise Inc.
[EMAIL PROTECTED]
(972)-67-340014
(972)-9-9581711 (ext: 116)

::..
I heard someone tried the monkeys-on-typewriters bit trying for the
plays of W. Shakespeare, but all they got was the collected works of
Francis Bacon.
-- Bill Hirst


 -Original Message-
 From: Andrea Viscovich [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 18, 2002 1:01 PM
 To: [EMAIL PROTECTED]
 Subject: smsc_at2.c at+cmms=2
 
 
 Inside the code there is a call to at+cmms=2
 if(list_len(privdata-outgoing_queue)  1)
 at2_send_modem_command(privdata, AT+CMMS=2, 0, 0);
 On all wavecom this generates an error response.
 Looking to at manual (wavecom) there is no mention to this.
 Does anybody know anything about it?
 Andrea Viscovich
 
 Email2Mobile: [EMAIL PROTECTED]
 Web: http://www.smsprof.it
 
 
 
 




RE: smsc_at2.c at+cmms=2

2002-04-18 Thread Alex Judd

+CMMS is More messages to send and is used by the Siemens, however not 
by most other devices.

Have a look at 

http://gatling.ikk.sztaki.hu/~kissg/gsm/at+c.html

and reports from Siemens vs. Falcon there too.

Alex

On Thu, 18 Apr 2002, Oded Arbel wrote:

 
 I don't know what is +CMMS (IIRC it isn't mentioned on the wavecom
 manual),  what its suposed to do or why Bruno put it in, but latest CVS
 has a configuration for that (in modems.conf) that is disabled by
 default for most modem types (only enabled for nokia phone in the sample
 modems.conf).
 
 --
 Oded Arbel
 m-Wise Inc.
 [EMAIL PROTECTED]
 (972)-67-340014
 (972)-9-9581711 (ext: 116)
 
 ::..
 I heard someone tried the monkeys-on-typewriters bit trying for the
 plays of W. Shakespeare, but all they got was the collected works of
 Francis Bacon.
   -- Bill Hirst
 
 
  -Original Message-
  From: Andrea Viscovich [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, April 18, 2002 1:01 PM
  To: [EMAIL PROTECTED]
  Subject: smsc_at2.c at+cmms=2
  
  
  Inside the code there is a call to at+cmms=2
  if(list_len(privdata-outgoing_queue)  1)
  at2_send_modem_command(privdata, AT+CMMS=2, 0, 0);
  On all wavecom this generates an error response.
  Looking to at manual (wavecom) there is no mention to this.
  Does anybody know anything about it?
  Andrea Viscovich
  
  Email2Mobile: [EMAIL PROTECTED]
  Web: http://www.smsprof.it
  
  
  
  
 

-- 
Alex Judd
http://www.skywire.co.uk





RE: smsc_at2.c at+cmms=2

2002-04-18 Thread Bruno David Simões Rodrigues

On Thu, 2002-04-18 at 12:57, Alex Judd wrote:
 +CMMS is More messages to send and is used by the Siemens, however not 
 by most other devices.

Uhm. I've set it disabled by default because altough it works with nokia
6210, it ain't working with Siemens M20...








Re: smsc_at2.c at+cmms=2

2002-04-18 Thread Andrea Viscovich

Thanks Alex and Oded.

but latest CVS
has a configuration for that (in modems.conf) that is disabled by
default for most modem types 

I just dowloaded latest tar.gz (snapshot). There is exactly the same code:

void at2_send_messages(PrivAT2data *privdata)
{
Msg *msg;

do
{
 if(list_len(privdata-outgoing_queue)  1)
 at2_send_modem_command(privdata, AT+CMMS=2, 0, 0);
 if( ( msg = list_extract_first(privdata-outgoing_queue )))
 at2_send_one_message(privdata, msg);
} while (msg);
}

I think I'll cut the at2_send_modem_command away.
Andrea





Snapshots aren't being built (Was: Re: smsc_at2.c at+cmms=2)

2002-04-18 Thread Bruno Rodrigues




- Original Message -
From: Andrea Viscovich [EMAIL PROTECTED]
To: Alex Judd [EMAIL PROTECTED]; Oded Arbel [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, April 18, 2002 3:51 PM
Subject: Re: smsc_at2.c at+cmms=2


 Thanks Alex and Oded.

 but latest CVS
 has a configuration for that (in modems.conf) that is disabled by
 default for most modem types

 I just dowloaded latest tar.gz (snapshot). There is exactly the same code:


http://www.kannel.3glab.org/cgi-bin/viewcvs.cgi/gateway/gw/smsc_at2.c?annota
te=1.44#1425

Snapshots aren't beeing built since Apr 09, and I've commited in Apr 10.

Please try the cvs version for now







Re: Snapshots aren't being built (Was: Re: smsc_at2.c at+cmms=2)

2002-04-18 Thread Andrea Viscovich

Subject: Snapshots aren't being built (Was: Re: smsc_at2.c at+cmms=2)

Hi Bruno,
can you tell me why this happens?
Still I tought snapshot were built at 4.00 every morning.
Is there any reason as someone stopeed it?
Cheers
Andrea