Skip to content
Snippets Groups Projects
pid_common.h 192 B
Newer Older
#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