public class TestMaq20
extends org.lsst.ccs.drivers.modbus.TestModbus
| Modifier and Type | Class and Description |
|---|---|
static class |
TestMaq20.DiscFunc
Private data
|
static class |
TestMaq20.Timebase |
| Constructor and Description |
|---|
TestMaq20()
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
armFunction(int modId,
int chan) |
void |
disarmFunction(int modId,
int chan) |
void |
enableOut2(int modId,
int chan,
boolean enable) |
void |
identify(int modId) |
String |
isOut2Enabled(int modId,
int chan) |
void |
open(org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
String ident) |
void |
open(org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
String ident,
int param) |
void |
open(org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
String ident,
int baud,
org.lsst.ccs.drivers.ascii.Ascii.DataBits dbits,
org.lsst.ccs.drivers.ascii.Ascii.StopBits sbits,
org.lsst.ccs.drivers.ascii.Ascii.Parity parity,
org.lsst.ccs.drivers.ascii.Ascii.FlowCtrl flow) |
void |
openUsb(String serial) |
String |
readDiscAll(int modId) |
String |
readDiscIn(int modId) |
String |
readDiscIn(int modId,
int chan) |
String |
readDiscIn(int modId,
int chan,
int count) |
String |
readDiscOut(int modId) |
String |
readDiscOut(int modId,
int chan) |
String |
readDiscOut(int modId,
int chan,
int count) |
String |
readFrequency(int modId,
int chan) |
String |
readPulseCount(int modId,
int chan) |
String |
readRPM(int modId,
int chan) |
String |
readValue(int modId) |
String |
readValue(int modId,
int chan) |
String |
readValue(int modId,
int chan,
int count) |
void |
register(String... serial) |
void |
reset(int modId,
boolean deflt) |
void |
saveDefaultValues(int modId) |
void |
saveDiscDefaults(int modId) |
void |
saveParams() |
void |
saveRanges(int modId) |
void |
setDefaultValue(int modId,
int chan,
double... values) |
void |
setDiscDefault(int modId,
int chan,
int... values) |
void |
setDiscDefaultAll(int modId,
int value) |
void |
setDiscOff(int modId,
int chan,
int... values) |
void |
setDiscOffAll(int modId,
int value) |
void |
setEnabled(int modId,
int chan,
org.lsst.ccs.drivers.modbus.TestModbus.OnOff state) |
void |
setFunction(int modId,
int chan,
TestMaq20.DiscFunc func) |
void |
setIPAddress(String ipAddr) |
void |
setLowTime1(int modId,
int chan,
int time) |
void |
setLowTime2(int modId,
int chan,
int time) |
void |
setPeriod(int modId,
int chan,
int period) |
void |
setPulsesPerRevn(int modId,
int chan,
int ppr) |
void |
setRange(int modId,
int chan,
int range) |
void |
setSubnetMask(String mask) |
void |
setTimebase(int modId,
int chan,
TestMaq20.Timebase timebase) |
String |
showDateCode(int modId) |
String |
showDefaultValue(int modId) |
String |
showDefaultValue(int modId,
int chan) |
String |
showDefaultValue(int modId,
int chan,
int count) |
String |
showDiscDefault(int modId) |
String |
showDiscDefaultAll(int modId) |
String |
showDiscOff(int modId) |
String |
showDiscOffAll(int modId) |
String |
showEnabled(int modId,
int chan) |
String |
showFunction(int modId,
int chan) |
String |
showFwRevision(int modId) |
String |
showId(String serial) |
String |
showIds() |
String |
showIPAddress() |
String |
showLowTime1(int modId,
int chan) |
String |
showLowTime2(int modId,
int chan) |
String |
showModules() |
String |
showName(int modId) |
String |
showNumInputs(int modId) |
String |
showNumOutputs(int modId) |
String |
showNumRanges(int modId) |
String |
showPeriod(int modId,
int chan) |
String |
showPulsesPerRevn(int modId,
int chan) |
String |
showRange(int modId,
int chan) |
String |
showSerial(int modId) |
String |
showSubnetMask() |
String |
showTemperature() |
String |
showTimebase(int modId,
int chan) |
String |
showType(int modId) |
void |
writeDiscAll(int modId,
int value) |
void |
writeDiscOut(int modId,
int chan,
int... values) |
void |
writeValue(int modId,
int chan,
double... values) |
@Command(description="Open connection to general device")
public void open(@Argument(name="type",description="Connection type")
org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
@Argument(name="ident",description="Device identifier")
String ident)
throws org.lsst.ccs.drivers.commons.DriverException
open in class org.lsst.ccs.drivers.modbus.TestModbusorg.lsst.ccs.drivers.commons.DriverException@Command(description="Open connection to general device")
public void open(@Argument(name="type",description="Connection type")
org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
@Argument(name="ident",description="Device identifier")
String ident,
@Argument(name="param",description="Device parameter")
int param)
throws org.lsst.ccs.drivers.commons.DriverException
open in class org.lsst.ccs.drivers.modbus.TestModbusorg.lsst.ccs.drivers.commons.DriverException@Command(description="Open connection to serial device")
public void open(@Argument(name="type",description="Connection type: net, serial")
org.lsst.ccs.drivers.modbus.Modbus.ConnType type,
@Argument(name="ident",description="Device identifier")
String ident,
@Argument(name="baud",description="Baud rate")
int baud,
@Argument(name="dbits",description="The number of data bits")
org.lsst.ccs.drivers.ascii.Ascii.DataBits dbits,
@Argument(name="sbits",description="The number of stop bits")
org.lsst.ccs.drivers.ascii.Ascii.StopBits sbits,
@Argument(name="parity",description="The parity")
org.lsst.ccs.drivers.ascii.Ascii.Parity parity,
@Argument(name="flow",description="The flow control")
org.lsst.ccs.drivers.ascii.Ascii.FlowCtrl flow)
throws org.lsst.ccs.drivers.commons.DriverException
open in class org.lsst.ccs.drivers.modbus.TestModbusorg.lsst.ccs.drivers.commons.DriverException@Command(description="Open connection to USB device")
public void openUsb(@Argument(name="serial",description="Serial number")
String serial)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Register modules")
public void register(@Argument(name="serial",description="Serial numbers")
String... serial)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show the IP address") public String showIPAddress() throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set the IP address")
public void setIPAddress(@Argument(name="ipaddr",description="IP address")
String ipAddr)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show the subnet mask") public String showSubnetMask() throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set the subnet mask")
public void setSubnetMask(@Argument(name="mask",description="subnet mask")
String mask)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show the temperature") public String showTemperature() throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Save the parameters")
public void saveParams()
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all module IDs") public String showIds() throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all modules") public String showModules() throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s ID") public String showId(@Argument(name="serial",description="Serial number") String serial) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Blink a module\'s status light")
public void identify(@Argument(name="modid",description="Module ID")
int modId)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Reset a module")
public void reset(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="deflt",description="Whether to apply defaults")
boolean deflt)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s name") public String showName(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s type") public String showType(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s serial number") public String showSerial(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s FW revision") public String showFwRevision(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s date code") public String showDateCode(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s input channel count") public String showNumInputs(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s output channel count") public String showNumOutputs(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show module\'s range count") public String showNumRanges(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show channel\'s range") public String showRange(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set channel\'s range")
public void setRange(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Channel number")
int chan,
@Argument(name="range",description="Range number")
int range)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show channel\'s enabled state") public String showEnabled(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set channel\'s enabled state")
public void setEnabled(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Channel number")
int chan,
@Argument(name="state",description="Enabled state")
org.lsst.ccs.drivers.modbus.TestModbus.OnOff state)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read channels\' data values") public String readValue(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan, @Argument(name="count",description="Number of channels") int count) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read a channel\'s data value") public String readValue(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read all channels\' data values") public String readValue(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Write data to channels")
public void writeValue(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="First channel number")
int chan,
@Argument(name="values",description="Values to write")
double... values)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set default data for channels")
public void setDefaultValue(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="First channel number")
int chan,
@Argument(name="values",description="Values to write")
double... values)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show channels\' default data values") public String showDefaultValue(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan, @Argument(name="count",description="Number of channels") int count) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show a channel\'s default data value") public String showDefaultValue(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all channels\' default data values") public String showDefaultValue(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Save the default data values")
public void saveDefaultValues(@Argument(name="modid",description="Module ID")
int modId)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Save the output ranges")
public void saveRanges(@Argument(name="modid",description="Module ID")
int modId)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read discrete input channels\' values") public String readDiscIn(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan, @Argument(name="count",description="Number of channels") int count) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read a discrete input channel\'s value") public String readDiscIn(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read all discrete input channels\' values") public String readDiscIn(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read discrete output channels\' values") public String readDiscOut(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan, @Argument(name="count",description="Number of channels") int count) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read a discrete output channel\'s value") public String readDiscOut(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Channel number") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read all discrete output channels\' values") public String readDiscOut(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read all discrete input channels\' values") public String readDiscAll(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Write data to discrete channels")
public void writeDiscOut(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="First channel number")
int chan,
@Argument(name="values",description="Values to write")
int... values)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Write data to discrete channels")
public void writeDiscAll(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="value",description="Value to write")
int value)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set default discrete output values")
public void setDiscDefault(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="First channel number")
int chan,
@Argument(name="values",description="Values to write")
int... values)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Save the default discrete output values")
public void saveDiscDefaults(@Argument(name="modid",description="Module ID")
int modId)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set all default discrete output values")
public void setDiscDefaultAll(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="value",description="Value to write")
int value)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all default discrete output values") public String showDiscDefault(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all default discrete output values") public String showDiscDefaultAll(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set power-off discrete output values")
public void setDiscOff(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="First channel number")
int chan,
@Argument(name="values",description="Values to write")
int... values)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set all default discrete output values")
public void setDiscOffAll(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="value",description="Value to write")
int value)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all power-off discrete output values") public String showDiscOff(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show all default discrete output values") public String showDiscOffAll(@Argument(name="modid",description="Module ID") int modId) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set discrete function code")
public void setFunction(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="func",description="Function name")
TestMaq20.DiscFunc func)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show discrete function code") public String showFunction(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Arm discrete function")
public void armFunction(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Disarm discrete function")
public void disarmFunction(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read pulse count") public String readPulseCount(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read frequency") public String readFrequency(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Read RPM") public String readRPM(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set pulses per revolution")
public void setPulsesPerRevn(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="ppr",description="Pulses/revolution")
int ppr)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show pulses per revolution") public String showPulsesPerRevn(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set PWM timebase")
public void setTimebase(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="time",description="Timebase")
TestMaq20.Timebase timebase)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show PWM timebase") public String showTimebase(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set PWM period")
public void setPeriod(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="period",description="PWM period")
int period)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show PWM period") public String showPeriod(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set output 1 low time")
public void setLowTime1(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="time",description="Time")
int time)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show PWM output 1 low time") public String showLowTime1(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Set output 2 low time")
public void setLowTime2(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="time",description="Time")
int time)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show PWM output 2 low time") public String showLowTime2(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Enable/disable output 2")
public void enableOut2(@Argument(name="modid",description="Module ID")
int modId,
@Argument(name="chan",description="Function channel number (0 or 1)")
int chan,
@Argument(name="time",description="Time")
boolean enable)
throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverException@Command(description="Show whether PWM output 2 is enabled") public String isOut2Enabled(@Argument(name="modid",description="Module ID") int modId, @Argument(name="chan",description="Function channel number (0 or 1)") int chan) throws org.lsst.ccs.drivers.commons.DriverException
org.lsst.ccs.drivers.commons.DriverExceptionCopyright © 2023 LSST. All rights reserved.