Re: [Asterisk-Users] Recall doesn't seem to work

2003-09-20 Thread Robert Boardman
Thanks for the advice Matteo but it didn't work, anthink else I may of 
missed?

Robb

Brancaleoni Matteo wrote:

I forgot...
the main problem is that eu phones seems to have flash timings
~80 - ~120 ms , so with default zaptel values, a flash hook
('R' button) is received by asterisk as one pulse, since
the pulse time is set up to 150ms ...
Matteo.

Il sab, 2003-09-20 alle 01:15, Brancaleoni Matteo ha scritto:
 

Hi.
zaptel.h , line 789
#define ZT_DEFAULT_RXFLASHTIME 1250 

For italy I had to lower it to 200,
also be sure to lower the pulse timer
(unless you're using a pulse phone with asterisk)
line 792
#define ZT_MAXPULSETIME (150 * 8)
I moved it to (20 * 8)
be sure not to set it under ZT_MINPULSETIME, that's (15 * 8)
Matteo

Il ven, 2003-09-19 alle 22:04, Robert Boardman ha scritto:
   

Hi

I'm having a problem where the recall button doesn't work

If i press recall before I dial numbers it disconnects me which is what 
I would expect, but during a conversation if I want to  transfer the TDM 
400 just ignores the recall

Any advice would be gratefully received

Thanks

Robb

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
 



___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Recall doesn't seem to work

2003-09-20 Thread Brancaleoni Matteo
mmh... have you enabled
threewaycalling = yes
transfer = yes
in zapata.conf  ?

matteo.

Il sab, 2003-09-20 alle 10:51, Robert Boardman ha scritto:
 Thanks for the advice Matteo but it didn't work, anthink else I may of 
 missed?
 
 Robb
 
 Brancaleoni Matteo wrote:
 
 I forgot...
 the main problem is that eu phones seems to have flash timings
 ~80 - ~120 ms , so with default zaptel values, a flash hook
 ('R' button) is received by asterisk as one pulse, since
 the pulse time is set up to 150ms ...
 
 Matteo.
 
 Il sab, 2003-09-20 alle 01:15, Brancaleoni Matteo ha scritto:
   
 
 Hi.
 zaptel.h , line 789
 #define ZT_DEFAULT_RXFLASHTIME 1250 
 
 For italy I had to lower it to 200,
 also be sure to lower the pulse timer
 (unless you're using a pulse phone with asterisk)
 line 792
 #define ZT_MAXPULSETIME (150 * 8)
 
 I moved it to (20 * 8)
 be sure not to set it under ZT_MINPULSETIME, that's (15 * 8)
 
 Matteo
 
 Il ven, 2003-09-19 alle 22:04, Robert Boardman ha scritto:
 
 
 Hi
 
 I'm having a problem where the recall button doesn't work
 
 If i press recall before I dial numbers it disconnects me which is what 
 I would expect, but during a conversation if I want to  transfer the TDM 
 400 just ignores the recall
 
 Any advice would be gratefully received
 
 Thanks
 
 Robb
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
   
 
 
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Brancaleoni Matteo [EMAIL PROTECTED]
Espia - Emmegi Srl

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Recall doesn't seem to work

2003-09-20 Thread Robert Boardman
Thanks that worked

Robb

Brancaleoni Matteo wrote:

mmh... have you enabled
threewaycalling = yes
transfer = yes
in zapata.conf  ?
matteo.

Il sab, 2003-09-20 alle 10:51, Robert Boardman ha scritto:
 

Thanks for the advice Matteo but it didn't work, anthink else I may of 
missed?

Robb

Brancaleoni Matteo wrote:

   

I forgot...
the main problem is that eu phones seems to have flash timings
~80 - ~120 ms , so with default zaptel values, a flash hook
('R' button) is received by asterisk as one pulse, since
the pulse time is set up to 150ms ...
Matteo.

Il sab, 2003-09-20 alle 01:15, Brancaleoni Matteo ha scritto:

 

Hi.
zaptel.h , line 789
#define ZT_DEFAULT_RXFLASHTIME 1250 

For italy I had to lower it to 200,
also be sure to lower the pulse timer
(unless you're using a pulse phone with asterisk)
line 792
#define ZT_MAXPULSETIME (150 * 8)
I moved it to (20 * 8)
be sure not to set it under ZT_MINPULSETIME, that's (15 * 8)
Matteo

Il ven, 2003-09-19 alle 22:04, Robert Boardman ha scritto:
  

   

Hi

I'm having a problem where the recall button doesn't work

If i press recall before I dial numbers it disconnects me which is what 
I would expect, but during a conversation if I want to  transfer the TDM 
400 just ignores the recall

Any advice would be gratefully received

Thanks

Robb

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
   



___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Recall doesn't seem to work

2003-09-19 Thread Paul Crick
 I'm having a problem where the recall button doesn't work
For the benefit of our non-UK readers, recall = flashhook, but usually only
100ms timed line break, not the 500ms which seems to be the norm in North
America.

Robb - am I right in saying your using a UK phone? And it's definitely using
timed line break (not earth recall, another european oddity)?

Hmm.. This one is a bit beyond me but I'm sure there must be a timing
parameter that can be set to acknowledge a shorter hook flash.. Just not
sure if it's in a config file or (more likely) something that needs you to
tweak the C code in one of the channel drivers.

As an alternative, you can try pressing and releasing your hook switch/hang
up button briefly - this may work for you.

Cheers
Paul

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Recall doesn't seem to work

2003-09-19 Thread Brancaleoni Matteo
Hi.
zaptel.h , line 789
#define ZT_DEFAULT_RXFLASHTIME 1250 

For italy I had to lower it to 200,
also be sure to lower the pulse timer
(unless you're using a pulse phone with asterisk)
line 792
#define ZT_MAXPULSETIME (150 * 8)

I moved it to (20 * 8)
be sure not to set it under ZT_MINPULSETIME, that's (15 * 8)

Matteo

Il ven, 2003-09-19 alle 22:04, Robert Boardman ha scritto:
 Hi
 
 I'm having a problem where the recall button doesn't work
 
 If i press recall before I dial numbers it disconnects me which is what 
 I would expect, but during a conversation if I want to  transfer the TDM 
 400 just ignores the recall
 
 Any advice would be gratefully received
 
 Thanks
 
 Robb
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Brancaleoni Matteo [EMAIL PROTECTED]
Espia - Emmegi Srl

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Recall doesn't seem to work

2003-09-19 Thread Brancaleoni Matteo
I forgot...
the main problem is that eu phones seems to have flash timings
~80 - ~120 ms , so with default zaptel values, a flash hook
('R' button) is received by asterisk as one pulse, since
the pulse time is set up to 150ms ...

Matteo.

Il sab, 2003-09-20 alle 01:15, Brancaleoni Matteo ha scritto:
 Hi.
 zaptel.h , line 789
 #define ZT_DEFAULT_RXFLASHTIME 1250 
 
 For italy I had to lower it to 200,
 also be sure to lower the pulse timer
 (unless you're using a pulse phone with asterisk)
 line 792
 #define ZT_MAXPULSETIME (150 * 8)
 
 I moved it to (20 * 8)
 be sure not to set it under ZT_MINPULSETIME, that's (15 * 8)
 
 Matteo
 
 Il ven, 2003-09-19 alle 22:04, Robert Boardman ha scritto:
  Hi
  
  I'm having a problem where the recall button doesn't work
  
  If i press recall before I dial numbers it disconnects me which is what 
  I would expect, but during a conversation if I want to  transfer the TDM 
  400 just ignores the recall
  
  Any advice would be gratefully received
  
  Thanks
  
  Robb
  
  ___
  Asterisk-Users mailing list
  [EMAIL PROTECTED]
  http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Brancaleoni Matteo [EMAIL PROTECTED]
Espia - Emmegi Srl

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users