0001-Adds-proto-file-for-the-status-convergence-of-a-moti.patch

Anonymous, 02/17/2014 09:30 PM

Download (1.2 KB)

View differences:

proto/sandbox/rst/motioncontrol/MotionStatus.proto
1
package rst.motioncontrol;
2

  
3
option java_outer_classname = "MotionStatusType";
4

  
5
/**
6
 * Holds the status of a motion, one of the two:
7
 * - Converged (in case of a periodic movement: following its attractor)
8
 * - Not converged
9
 *
10
 * @author Arne Nordmann <anordman@cor-lab.uni-bielefeld.de>
11
 */
12
message MotionStatus {
13

  
14
    /**
15
     * Converged - true or false
16
     */
17
    required bool converged = 1;
18

  
19
}
0
-