CommandType.java 548 B

1234567891011121314
  1. package at.acdp.urweb.rtde;
  2. public class CommandType {
  3. public final static int RTDE_REQUEST_PROTOCOL_VERSION = 86;
  4. public final static int RTDE_GET_URCONTROL_VERSION = 118;
  5. public final static int RTDE_TEXT_MESSAGE = 77;
  6. public final static int RTDE_DATA_PACKAGE = 85;
  7. public final static int RTDE_CONTROL_PACKAGE_SETUP_OUTPUTS = 79;
  8. public final static int RTDE_CONTROL_PACKAGE_SETUP_INPUTS = 73;
  9. public final static int RTDE_CONTROL_PACKAGE_START = 83;
  10. public final static int RTDE_CONTROL_PACKAGE_PAUSE = 80;
  11. }