Technical data

Programming With Generic Application Handler 4
E6198B Switch/Load Unit Software Manual 4-17
}
int e6198b_6178_openLoadSwitch(long boxNr,long slotNr, long channel,*status)
{
slu_status=SetLoadSwitch(boxNr,slotNr,channel,0,*status);
return slu_status;
}
int main()
{
long return;
e6198b_6178_closeLoadSwitch( 0, 1, 1,&return);//Call SLU 0, Slot 1, Channel 1
…// Command
}
int e6198b_6178_closeLoadSwitch(long boxNr, long slotNr, long channel,*status)
{
slu_status=SetLoadSwitch(boxNr,slotNr,channel,1,*status);
return slu_status;
}
ResetSlu(boxNr) initializes all connected Switch Load Unit. It
collects information of all installed load cards (of all SLUs) and
stores the information internal.
int reset()
{
long return;
e6198b_reset(0,&return);
return 0;
}
int e6198b_reset(long boxNr,*status)
{
slu_status=ResetSlu(boxNr,*status);