Sets the Frequency of the Function Generator.
CalFgenSetFrequency (hHandle, dFrequency, plStatus)
Name |
Type |
Comments |
hHandle |
LONG |
Handle for a Function Generator. |
dFrequency |
DOUBLE |
Frequency value to set. |
plStatus |
PLONG |
Returned status: 0 on success, negative number on failure. |
This function sets the Frequency of the output waveform.
The following example sets the Frequency to 100MHz:
LONG lHandle, lStatus;
CalFgenSetFrequency (lHandle, 100e6, &lStatus);