voiceBusy (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

All with voice/DTMF capability

Firmware version:

1.00 / 1.00.00


Will return information about if voice-messages currently is being played.

 

Input:

None

 

Returns: BOOL

TRUE:

Voice messages is being played.

FALSE:

No voice messags is being played.

 

Declaration:

FUNCTION voiceBusy : BOOL;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
  ...
  // Test for voice messages being played.
  IF NOT voiceBusy() THEN
     ...
  END_IF;
  ...
END;
 
END_PROGRAM;