Data Sheet

Table Of Contents
89
5.1.61 PD_SetGetManufacturerInfoSetting
Applies setting to GetManufacturerInfo related commands in PD Exerciser. It must be
called before PD_WaitForGetManufacturerInfo or PD_DelayAutoResponse commands to take
effect.
Format
Call PD_SetGetManufacturerInfoSetting( PD_GetManufacturerInfo_Settings $settings
)
Parameters
$settings
Parameter type is PD_GetManufacturerInfo_Settings. Available fields of this type are:
Field Names
Description
WaitTimeout
Wait TimeOut(in micro seconds) to receive
GetManufacturerInfo message.
Default: PD_DEFAULT_TIMEOUT_INFINIT
Result
None
Examples
$getmaninfo_setting = PD_GetManufacturerInfo_Settings
{
WaitTimeout = 50000
}
Call PD_SetGetManufacturerInfoSetting( $getmaninfo_setting )
5.1.62 PD_WaitForGetManufacturerInfo
Waits for user-defined time-out to receive Manufacturer_Info message. It will respond to
incoming messages as part of GetManufacturerInfo AMS.
Format
Call PD_WaitForGetManufacturerInfo()
Parameters
None
Result
User can evaluate the command results(including sub-results) using IfMatched/ElseMatched
command.
List of result values:
Result Value
Description
PD_RESULT_OK
Command succeeded
PD_RESULT_FAILED
Command failed. In this case corresponding sub results
for PD_SendPacket and PD_ReceivePacket are valid
also (depends on the error type which has been
occurred during sending or receiving data).
PD_SUBRESULT_MSG_NOT_RECEIVED
Subresult - Get_Manufacturer_Info message not
received.
Examples