Actions

Difference between revisions of "Simplex conversation (Event Handler)"

From Zenitel Wiki

(Programming)
 
(32 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{AI}}
 
=General=
 
=General=
This article describes how you can override the voice-operated duplex (VOX), and have a fixed (Simplex) speech direction. Two applications are described.<br\>
+
This article describes how you can override the voice-operated duplex (VOX), and set the system in Simplex (Press To Talk) mode.
The first one describes how calls from a master station can be programmed to have initial speech direction from the called station towards the master station.<br\>
 
The second one describes how the whole exchange can be set in permanent simplex mode.<br\>
 
Software requirement: ''[[AMC]] 08.20'' or newer.
 
  
=Initial Speech Direction B to A=
+
Software requirement: ''AMC 10.52'' or newer.
When a Master station calls a [[Substation]] it is often required that the conversation should have a fixed speech direction from the substation towards the master station.<br\>
 
By using the AlphaCom [[Event Handler]], it is possible to force the M-key on the B-subscriber ON when the conversation starts, and release the M-key when the conversation cancels. This will force the initial speech direction to be from the substation towards the master station. By operating the M-key, the master can override the speech direction. (In AlphaCom, the last one who is pressing the M-key will get the speech direction). If the master makes a short M-key press the conversation will turn to voice switched duplex.
 
  
==Programming==
+
=Whole Exchange in Simplex Mode=
In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following events:
+
This event will set the whole exchange in simplex (Press To Talk) mode. Simplex mode will also work across AlphaNet.
------------
 
'''Event 1''' -
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="400pt"|The Master Station (or a [[UDP group]] of stations
 
|-
 
|'''Event type''': || [[Conversation Outgoing (Event Type)|08 - Conversation - Outgoing]]
 
|-
 
|'''Subevent''': || 0
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || All
 
|-
 
|'''Action''': || [[PAUSE]]
 
|-
 
| &nbsp; || [[M KEY|$M]] L%2.dir
 
|-
 
|}
 
 
 
---------------
 
'''Event 2''' -
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="400pt"|The Master Station (or a [[UDP group]] of stations
 
|-
 
|'''Event type''': || [[Conversation Outgoing (Event Type)|08 - Conversation - Outgoing]]
 
|-
 
|'''Subevent''': || 0
 
|-
 
|'''When change to''': || OFF
 
|-
 
|'''When related to''': || All
 
|-
 
|'''Action''': || [[PAUSE]]
 
|-
 
| &nbsp; || [[M KEY RELEASE|$MREL]] L%2.dir
 
|-
 
|}
 
 
 
---------------
 
 
 
If there are several stations to have initial speech direction set, one can use a [[UDP group]] as Event Owner.
 
  
[[Image:Simplex Conversation_Option – Use of UDP Groups.jpg|center|300px|thumb]]
+
In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following event:
 +
[[File:Simplex.PNG|thumb|left|500px|Event that sets the whole exchange in simplex mode]]
 +
<br style="clear:both;" />
  
A [[UDP group]] is set as Owner of an event by selecting ''Exchange & System -> Events - >'' “Insert”. Now change the “Owner Type” to Station w. UDP. The ID field specifies which UDP group.
+
{{Code2|
 +
@U%2.nod [[SET_SIMPLEX|$SIMP]] L%2.dir U0 U1
 +
}}
  
[[Image:Simplex Conversation_Option – Use of UDP Groups2.jpg|center|300px|thumb]]
+
Initial speech direction will be from B-subscriber towards A-subscriber.
<br\>
 
 
 
=Whole Exchange in Simplex Mode=
 
If the Event Owner in the two events described above is set to [[UDP group]] 8, all stations will have initial speech direction from B to A.
 
  
Normally you can return to duplex mode by pressing the M-key quickly. In [[AMC]] there is a timer defining how short this M-key pulse have to be. If the timer is set to 0, it will not be possible to revert back from simplex to duplex. In this way all conversations will be in simplex mode. The timer is not available from [[AlphaPro]], it has to be changed by using the nvram editor of the [[TST console]].  
+
If the Simplex mode should not apply to the whole exchange, but to a single station or a limited group of stations only, simply change the owner of the event to that single station, or include the relevant stations in an [[UDP|UDP group]] and set this UDP group as event owner.
  
TST>>nvram -  ex_profile.timeouts.short_m_pres
 
  
Set this value to 0 (default value is 7). This will disable simplex to duplex by M-pulse.
 
  
  
[[Category:Applications]]
+
[[Category:AlphaCom Applications]]
 +
[[Category: ICX-AlphaCom Applications]]
 +
[[Category:Applications using Event Handler]]

Latest revision as of 11:37, 8 July 2022

AI.png

General

This article describes how you can override the voice-operated duplex (VOX), and set the system in Simplex (Press To Talk) mode.

Software requirement: AMC 10.52 or newer.

Whole Exchange in Simplex Mode

This event will set the whole exchange in simplex (Press To Talk) mode. Simplex mode will also work across AlphaNet.

In AlphaPro, go to Exchange and System -> Events, press Insert and create the following event:

Event that sets the whole exchange in simplex mode


Action commands:

@U%2.nod $SIMP L%2.dir U0 U1


Initial speech direction will be from B-subscriber towards A-subscriber.

If the Simplex mode should not apply to the whole exchange, but to a single station or a limited group of stations only, simply change the owner of the event to that single station, or include the relevant stations in an UDP group and set this UDP group as event owner.