GpibSetSlowMode


 

Function

Sets wait time for every handshake. (To low speed)

 

Format

Ret = GpibSetSlowMode (  Id, SlowTime )

 

Parameter

Id [ short ]

Specifies DevID or EqpID.

Whichever it specifies, operation does not change.

 

SlowTime [ short ]

Sets wait time.

1 to 32767(7FFFH)

Wait time (Value * [mSec])

0

Return to regular speed

 

Return Value

Ret [ Long ]

0

Normality completion

10001

Invalid ID was specified

10002

Driver can not be called

11702

The value of SlowTime is outside the designated range

 

Initial Value

SlowTime

0

No wait

 

Example

Sets wait time to 1 mSec.

C

short SlowTime;

        SlowTime= 1;

        Ret = GpibSetSlowMode ( Id, SlowTime );

 

Remark

When performing this function again with [SlowTime = 0] in low speed, it returns to early communication speed.

 

See Also

GpibSendData | GpibRecData | GpibGetSlowMode