Instrument Control (GPIB, Serial, VISA, IVI)

cancel
Showing results for 
Search instead for 
Did you mean: 

hpe363xa_ConfigureVoltageLevel configuration of voltage > 25 V is not possible.

I try to use hpe363xa_ConfigureVoltageLevel with "1" as channel parameter and a voltage value of 50 Volts with an HPE33634a device. The problem ist that the function accept voltage between 0 and 25 volts. Higher voltage (> 25 V) value causes an error.
It seems that the hpe363xa_ConfigureVoltageLevel function has voltage range from an HPE3631A device (0-25 Volts on channel 1). Has anyone the same problem, and maybe a solution ?
0 Kudos
Message 1 of 3
(3,210 Views)
How do you initialize this driver? If you are using VI_FALSE for IDQuery, driver does not check instrument type and using default model hpe3631a.

a) Enable id query in your init function
or
b) specify DriverSetup in option string of hpe3631a_InitWithOptions.

hpe3631a_InitWithOptions(vi, "GPIB::14::INSTR", VI_FLASE, VI_FALSE, "DriverSetup=Model:E3634A", &vi);

More information you can find in help of option string parameter. (function hpe363xa_InitWithOptions).

If you are using Class driver, you can specify Driver Setup in Max too.

Zdenek
0 Kudos
Message 2 of 3
(3,210 Views)
That work fine, thank
0 Kudos
Message 3 of 3
(3,210 Views)