Actions

Difference between revisions of "%busy"

From Zenitel Wiki

(Examples)
 
Line 17: Line 17:
 
  stop
 
  stop
 
  ENDIF
 
  ENDIF
  ​LOG "Sstation %1.phy is free"  
+
  ​LOG "Station %1.phy is free"  
  
  

Latest revision as of 16:40, 9 June 2020

AI.png

The %busy macro is used in the Event Handler to check if a station is busy or free.

Syntax

%busy(station)

Return 1 if busy, and 0 if free

  • station: Physical number 1 - 552


Examples

%busy(4)           - Returns 1 if station 4 if busy


IF %busy(%1.phy)
LOG "Station %1.phy is busy"
stop
ENDIF
​LOG "Station %1.phy is free" 


Back to Event_Handler#List_of_context_parameters.