MRSL Motion Primitive Library  1.2
A motion primitive library for generating trajectory for mobile robots
control.h
Go to the documentation of this file.
1 
5 #ifndef MPL_CONTROL_H
6 #define MPL_CONTROL_H
7 
8 namespace Control {
10 enum Control {
11  NONE = 0,
12  VEL = 0b00001,
13  ACC = 0b00011,
14  JRK = 0b00111,
15  SNP = 0b01111,
16  VELxYAW = 0b10001,
17  ACCxYAW = 0b10011,
18  JRKxYAW = 0b10111,
19  SNPxYAW = 0b11111
20 };
21 } // namespace Control
22 #endif
default uninitialized value
Definition: control.h:11
control input is jrk
Definition: control.h:14
control input is vel
Definition: control.h:12
control input is snp
Definition: control.h:15
control input is snp and yaw
Definition: control.h:19
Definition: control.h:8
control input is vel and yaw
Definition: control.h:16
control input is jrk and yaw
Definition: control.h:18
control input is acc
Definition: control.h:13
control input is acc and yaw
Definition: control.h:17