SimpleFOClibrary  2.1
commands.h
Go to the documentation of this file.
1 #ifndef COMMANDS_h
2 #define COMMANDS_h
3 
4 // see docs.simplefoc.com for in depth explanation of the commands
5 
6 // list of commands
7  #define CMD_C_D_PID 'D'
8  #define CMD_C_Q_PID 'Q'
9  #define CMD_V_PID 'V'
10  #define CMD_A_PID 'A'
11  #define CMD_STATUS 'E'
12  #define CMD_LIMITS 'L'
13  #define CMD_MOTION_TYPE 'C'
14  #define CMD_TORQUE_TYPE 'T'
15  #define CMD_SENSOR 'S'
16  #define CMD_MONITOR 'M'
17  #define CMD_RESIST 'R'
18 
19  // commander configuration
20  #define CMD_SCAN '?'
21  #define CMD_VERBOSE '@'
22  #define CMD_DECIMAL '#'
23 
24  // subcomands
25  //pid - lpf
26  #define SCMD_PID_P 'P'
27  #define SCMD_PID_I 'I'
28  #define SCMD_PID_D 'D'
29  #define SCMD_PID_RAMP 'R'
30  #define SCMD_PID_LIM 'L'
31  #define SCMD_LPF_TF 'F'
32  // limits
33  #define SCMD_LIM_CURR 'C'
34  #define SCMD_LIM_VOLT 'U'
35  #define SCMD_LIM_VEL 'V'
36  //sensor
37  #define SCMD_SENS_MECH_OFFSET 'M'
38  #define SCMD_SENS_ELEC_OFFSET 'E'
39  // monitoring
40  #define SCMD_DOWNSAMPLE 'D'
41  #define SCMD_CLEAR 'C'
42  #define SCMD_GET 'G'
43  #define SCMD_SET 'S'
44 
45 #endif