aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorRoman Bapst <romanbapst@yahoo.de>2014-11-11 15:01:47 +0100
committerRoman Bapst <romanbapst@yahoo.de>2014-11-11 15:01:47 +0100
commita0e2e4e8b30ef64728ff57e56a28b95527f4a1b0 (patch)
treeb9f460ab68190711e4ead9f2f2c6e6f1f3b23fa6 /src/modules
parented409fd53757a43b49758d3ed5573e809a23b113 (diff)
downloadpx4-firmware-a0e2e4e8b30ef64728ff57e56a28b95527f4a1b0.tar.gz
px4-firmware-a0e2e4e8b30ef64728ff57e56a28b95527f4a1b0.tar.bz2
px4-firmware-a0e2e4e8b30ef64728ff57e56a28b95527f4a1b0.zip
pixhawk specific files
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/fw_att_control/fw_att_control_base.cpp1
-rw-r--r--src/modules/fw_att_control/fw_att_control_base.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/modules/fw_att_control/fw_att_control_base.cpp b/src/modules/fw_att_control/fw_att_control_base.cpp
index d8ba15969..99780bc7e 100644
--- a/src/modules/fw_att_control/fw_att_control_base.cpp
+++ b/src/modules/fw_att_control/fw_att_control_base.cpp
@@ -56,7 +56,6 @@ FixedwingAttitudeControlBase::FixedwingAttitudeControlBase() :
_setpoint_valid(false), _debug(false) {
/* safely initialize structs */
_att = {};
- _accel = {};
_att_sp = {};
_manual = {};
_airspeed = {};
diff --git a/src/modules/fw_att_control/fw_att_control_base.h b/src/modules/fw_att_control/fw_att_control_base.h
index 6b2efc46b..1726c2e3e 100644
--- a/src/modules/fw_att_control/fw_att_control_base.h
+++ b/src/modules/fw_att_control/fw_att_control_base.h
@@ -54,7 +54,6 @@
#include <uORB/topics/vehicle_global_position.h>
#include <uORB/topics/vehicle_status.h>
-#include <drivers/drv_accel.h>
#include <systemlib/perf_counter.h>
class FixedwingAttitudeControlBase
@@ -78,7 +77,6 @@ protected:
int _control_task; /**< task handle for sensor task */
struct vehicle_attitude_s _att; /**< vehicle attitude */
- struct accel_report _accel; /**< body frame accelerations */
struct vehicle_attitude_setpoint_s _att_sp; /**< vehicle attitude setpoint */
struct manual_control_setpoint_s _manual; /**< r/c channel data */
struct airspeed_s _airspeed; /**< airspeed */