Data Sheet

Table Of Contents
84
Call PD_SetAlertDO( PD_AlertDataObject $alert_do )
Parameters
$alert_do
Parameter type is PD_AlertDataObject. Refer to PD_AlertMsg for available fields of this type.
Result
None
Examples
$alert_do = PD_AlertDataObject
Call PD_SetAlertDO( $alert_do )
5.1.51 PD_SetAlertSetting
Applies settings to Alert related commands in PD Exerciser. It must be called before
PD_WaitForAlert or PD_DelayAutoResponse commands to take effect.
Format
Call PD_SetAlertSetting( PD_Alert_Settings $settings )
Parameters
$settings
Parameter type is PD_Alert_Settings. Available fields for this type are:
Field Names
Description
WaitTimeout
Wait TimeOut(micro second) to receive Alert message.
Default: PD_DEFAULT_TIMEOUT_INFINIT
ResponseType
Indicates response upon receiving the Alert message.
Possible values:
PD_RESPONSE_NOT_SUPPORTED,
PD_RESPONSE_UNSPECIFIED(default)
Result
None
Examples
$alert_setting = PD_Alert_Settings
{
ResponseType = PD_RESPONSE_NOT_SUPPORTED
}
Call PD_SetAlertSetting( $alert_setting )
5.1.52 PD_WaitForAlert
Wiats for a user-defined time-out to receive Alert message. It will respond to incoming
messages as part of Alert AMS.
Format
Call PD_WaitForAlert()
Parameters
None