Agilent Technologies Agilent E5250A User Manual
Page 160

6-24
Agilent E5250A User’s Guide, Edition 11
Programming the E5250A
Using the VFP Data Upload Library
Connect_vfp subprogram
Makes relay connections based on data from the specified Setup Memory. Data from
all 24 Setup Memories was loaded by the Load_vfp_data subprogram.
Syntax:
Connect_vfp(Setup_data$,Setup_num)
Parameters:
Setup_data$:
Data string for internal use in the library. Must declare 14000
byte data size.
Setup_num:
Setup Memory number: 1 to 24.
Example:
CALL Connect_vfp(Mat48_data$,1)
FNGet_vfp_comment$ subprogram
Returns comment from the specified Setup Memory. Comments for all 24 Setup
Memories were loaded by the Load_vfp_data subprogram.
Syntax:
FNGet_vfp_comment$(Setup_data$,Setup_num)
Parameters:
Setup_data$:
Data string for internal use in the library. Must declare 14000
byte data size.
Setup_num:
Setup Memory number from which to get comment: 1 to 24.
Example:
Comment$=FNGet_vfp_comment$(Mat48_data$,1)
DISP "Comment=";Comment$