|
|
@ -49,7 +49,8 @@ public enum CommandType { |
|
|
|
REPEAT_RUNNING(7, "repeat running a process"), |
|
|
|
REPEAT_RUNNING(7, "repeat running a process"), |
|
|
|
PAUSE(8, "pause a process"), |
|
|
|
PAUSE(8, "pause a process"), |
|
|
|
STOP(9, "stop a process"), |
|
|
|
STOP(9, "stop a process"), |
|
|
|
RECOVER_WAITING_THREAD(10, "recover waiting thread"); |
|
|
|
RECOVER_WAITING_THREAD(10, "recover waiting thread"), |
|
|
|
|
|
|
|
RECOVER_SERIAL_WAIT(11, "recover serial wait"); |
|
|
|
|
|
|
|
|
|
|
|
CommandType(int code, String descp) { |
|
|
|
CommandType(int code, String descp) { |
|
|
|
this.code = code; |
|
|
|
this.code = code; |
|
|
|