Technical data

4-18 E6198B Switch/Load Unit Software Manual
4 Programming With Generic Application Handler
return slu_status;
}
CloseSlu() function closes all previously initialized SLUs and
releases the cached data in the driver.
int close()
{
long return;
e6198b_closeSLU(&return);
return 0;
}
int e6198b_closeSLU(*status)
{
slu_status=CloseSlu(*status);
return slu_status;
}
SetCurrentSense(boxNr,slotNr,channel,*status) actuates the
sense multiplexer relays of the specified load card channel (only
one pair can be closed at a time, so after the current
measurement the actuated sense relays must be "unlocked" by
calling the routine with the channel parameter set to 0).
int main()
{
long return;
e6198b_closeCurrentSense(0,1,1,&return);
}
int e6198b_closeCurrentSense(long boxNr, long slotNr, long channel,*status)
{
slu_status=SetCurrentSense(boxNr, slotNr, channel,*status);
return slu_status;