Forked from
Distributed Autonomous Networked Control Lab / MicroCART
1869 commits behind, 107 commits ahead of the upstream repository.
-
Jake Drahos authoredJake Drahos authored
pid_common.h 192 B
#ifndef PID_COMMON_H
#define PID_COMMON_H
enum frontend_pid {
PITCH,
ROLL,
YAW,
NUM_PIDS
};
struct frontend_pid_data {
enum frontend_pid pid;
float p;
float i;
float d;
};
#endif