#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