FX3ConnectionPulseDrive Method |
This function drives a pin to the specified level for a given time interval in ms
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic void PulseDrive(
IPinObject pin,
uint polarity,
double pperiod,
uint mode
)
Public Sub PulseDrive (
pin As IPinObject,
polarity As UInteger,
pperiod As Double,
mode As UInteger
)
public:
virtual void PulseDrive(
IPinObject^ pin,
unsigned int polarity,
double pperiod,
unsigned int mode
) sealed
abstract PulseDrive :
pin : IPinObject *
polarity : uint32 *
pperiod : float *
mode : uint32 -> unit
override PulseDrive :
pin : IPinObject *
polarity : uint32 *
pperiod : float *
mode : uint32 -> unit
Parameters
- pin
- Type: IPinObject
The FX3PinObject for the pin to drive - polarity
- Type: SystemUInt32
The level to drive the pin to. 1 - high, 0 - low - pperiod
- Type: SystemDouble
The time to drive the pin for, in ms. Minimum of 3us. - mode
- Type: SystemUInt32
Not implemented
Implements
IPinFcns.PulseDrive(IPinObject, UInt32, Double, UInt32)
See Also