Agilent E5270 TIS User’s Guide, Edition 1
1-13
Starting TIS Programming
Migration to Agilent 4070
Migration to Agilent 4070
The Agilent E5270 TIS library is a set of functions that provide the same synopsis as
the Agilent 4070 TIS functions. So, if you create programs using the Agilent E5270
TIS library, the programs can be used to control the Agilent 4070 tester with small
change.
To migrate from the Agilent E5270 to Agilent 4070 successfully, perform the
following procedure.
1. Open the program on the Agilent 4070 system controller (HP-UX computer).
2. Change the header file. The header file
E5270_TIS.h
is not required. Include
the
tis.h
file instead.
#include "/opt/hp4070/include/tis.h"
3. Remove the following functions. They are not required for the Agilent 4070.
•
open_E5270
•
close_E5270
4. Remove the VXI
plug
&
play
driver functions for Agilent E5270 if they are used
in the program. The driver cannot be used to control the Agilent 4070. This part
of program should be created and added to the program for the Agilent 4070.
5. Remove the
vi_E5270
function if it is used in the program. The function
cannot be used to control the Agilent 4070. This part of program should be
created and added to the program for the Agilent 4070.
6. Refer to Table 1-3 and correct differences between the E5270 TIS and 4070 TIS.
NOTE
E5270_TIS_H macro
If the program includes the E5270_TIS_H macro as shown below, this part of
program does not have to be deleted.
#ifdef E5270_TIS_H
/* codes for E5270 */
#else
/* codes for 4070 */
#endif
Codes for 4070 will be performed if the E5270_TIS_H macro is not effective.