aboutsummaryrefslogtreecommitdiff
path: root/src/modules/mc_pos_control/mc_pos_control_main.cpp
diff options
context:
space:
mode:
authorandre-nguyen <nguyen.apv@gmail.com>2014-06-14 15:27:26 -0400
committerandre-nguyen <nguyen.apv@gmail.com>2014-06-14 15:27:26 -0400
commit02653f6cd9dd05c0d6bd5344d6e76fdb29641f33 (patch)
treea80b014f178de5ee2bd47261f42708b92773a6e3 /src/modules/mc_pos_control/mc_pos_control_main.cpp
parent6cf890b46b5a112ed20b3f8ed7be7b658d5c4a8c (diff)
parent7d05f2df7cf50dea6d2960001b5b0af7236f9e5e (diff)
downloadpx4-firmware-02653f6cd9dd05c0d6bd5344d6e76fdb29641f33.tar.gz
px4-firmware-02653f6cd9dd05c0d6bd5344d6e76fdb29641f33.tar.bz2
px4-firmware-02653f6cd9dd05c0d6bd5344d6e76fdb29641f33.zip
Merge branch 'offboard2' of github.com:elikos/Firmware into offboard2
Diffstat (limited to 'src/modules/mc_pos_control/mc_pos_control_main.cpp')
-rw-r--r--src/modules/mc_pos_control/mc_pos_control_main.cpp28
1 files changed, 27 insertions, 1 deletions
diff --git a/src/modules/mc_pos_control/mc_pos_control_main.cpp b/src/modules/mc_pos_control/mc_pos_control_main.cpp
index 6721d017d..7af148c7f 100644
--- a/src/modules/mc_pos_control/mc_pos_control_main.cpp
+++ b/src/modules/mc_pos_control/mc_pos_control_main.cpp
@@ -119,6 +119,7 @@ private:
int _local_pos_sub; /**< vehicle local position */
int _pos_sp_triplet_sub; /**< position setpoint triplet */
int _local_pos_sp_sub; /**< offboard local position setpoint */
+ int _global_vel_sp_sub; /**< offboard global velocity setpoint */
orb_advert_t _att_sp_pub; /**< attitude setpoint publication */
orb_advert_t _local_pos_sp_pub; /**< vehicle local position setpoint publication */
@@ -257,6 +258,7 @@ MulticopterPositionControl::MulticopterPositionControl() :
_manual_sub(-1),
_arming_sub(-1),
_local_pos_sub(-1),
+ _global_vel_sp_sub(-1),
_pos_sp_triplet_sub(-1),
/* publications */
@@ -784,6 +786,24 @@ MulticopterPositionControl::task_main()
_vel_sp(2) = _params.land_speed;
}
+ /* Offboard velocity control mode */
+ if (_control_mode.flag_control_offboard_enabled) {
+ bool updated;
+ orb_check(_global_vel_sp_sub, &updated);
+
+ if (updated) {
+ orb_copy(ORB_ID(vehicle_global_velocity_setpoint), _global_vel_sp_sub, &_global_vel_sp);
+ }
+
+ if (!_control_mode.flag_control_altitude_enabled && _control_mode.flag_control_climb_rate_enabled) {
+ _vel_sp(2) = _global_vel_sp.vz;
+ }
+
+ if (!_control_mode.flag_control_position_enabled && _control_mode.flag_control_velocity_enabled) {
+ _vel_sp(0) = _global_vel_sp.vx;
+ _vel_sp(1) = _global_vel_sp.vy;
+ }
+
if (!_control_mode.flag_control_manual_enabled) {
/* limit 3D speed only in non-manual modes */
float vel_sp_norm = _vel_sp.edivide(_params.vel_max).length();
@@ -801,10 +821,16 @@ MulticopterPositionControl::task_main()
if (_global_vel_sp_pub > 0) {
orb_publish(ORB_ID(vehicle_global_velocity_setpoint), _global_vel_sp_pub, &_global_vel_sp);
- } else {
+ } else if (!_control_mode.flag_control_offboard_enabled) {
_global_vel_sp_pub = orb_advertise(ORB_ID(vehicle_global_velocity_setpoint), &_global_vel_sp);
}
+ /* Close fd to let offboard vel sp be advertised in mavlink receiver */
+ if (_control_mode.flag_control_offboard_enabled && _global_vel_sp_pub > 0) {
+ close (_global_vel_sp);
+ _global_vel_sp_pub = -1;
+ }
+
if (_control_mode.flag_control_climb_rate_enabled || _control_mode.flag_control_velocity_enabled) {
/* reset integrals if needed */
if (_control_mode.flag_control_climb_rate_enabled) {