1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00
LibrePilot/flight/pios/osx/inc/pios_sim_priv.h
Oleg Semyonov 7d5d513e75 Move flight/PiOS.osx->flight/pios/osx
It did not work and and is not fixed yet. But at least it is in place now.
2013-04-25 13:23:47 +03:00

20 lines
307 B
C

#ifndef PIOS_SIM_PRIV_H
#define PIOS_SIM_PRIV_H
/**
* State of inputs and outputs to the simulation model
*/
struct pios_sim_state {
float accels[3];
float gyros[3];
float mag[3];
float baro[1];
float q[4];
float velocity[3];
float position[3];
float actuator[8];
};
#endif /* PIOS_SIM_PRIV */