public class RCMReg extends Object
| Constructor and Description |
|---|
RCMReg() |
| Modifier and Type | Method and Description |
|---|---|
void |
connect(int id) |
void |
read(int address,
int count) |
void |
show() |
void |
write(int address,
int[] value) |
@Command(description="Connect to an RCM") public void connect(@Argument(name="id",description="The id of the RCM") int id)
@Command(description="Show the current connection parameters") public void show()
@Command(description="Read and display registers from the RCM") public void read(@Argument(name="address",description="Read and display registers from the RCM") int address, @Argument(name="count",description="The number of registers to read (default 1)",defaultValue="1") int count)
@Command(description="Write to registers on the RCM", category=SYSTEM) public void write(@Argument(name="address",description="The address of the first register to write") int address, @Argument(name="value",description="The value(s) to write") int[] value)
Copyright © 2016 LSST. All rights reserved.