mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-16 03:57:34 +08:00
update mavlink submodule to latest
- update MAV_TYPE VTOL usage for current mavlink
This commit is contained in:
committed by
Lorenz Meier
parent
a5bd65b923
commit
98623f69a3
@@ -74,10 +74,11 @@
|
||||
#define VEHICLE_TYPE_HEXAROTOR 13
|
||||
#define VEHICLE_TYPE_OCTOROTOR 14
|
||||
#define VEHICLE_TYPE_TRICOPTER 15
|
||||
#define VEHICLE_TYPE_VTOL_DUOROTOR 19
|
||||
#define VEHICLE_TYPE_VTOL_QUADROTOR 20
|
||||
#define VEHICLE_TYPE_VTOL_TAILSITTER_DUOROTOR 19
|
||||
#define VEHICLE_TYPE_VTOL_TAILSITTER_QUADROTOR 20
|
||||
#define VEHICLE_TYPE_VTOL_TILTROTOR 21
|
||||
#define VEHICLE_TYPE_VTOL_RESERVED2 22 // VTOL standard
|
||||
#define VEHICLE_TYPE_VTOL_FIXEDROTOR 22 // VTOL standard
|
||||
#define VEHICLE_TYPE_VTOL_TAILSITTER 23
|
||||
|
||||
#define BLINK_MSG_TIME 700000 // 3 fast blinks (in us)
|
||||
|
||||
@@ -91,22 +92,25 @@ bool is_multirotor(const vehicle_status_s ¤t_status)
|
||||
|
||||
bool is_rotary_wing(const vehicle_status_s ¤t_status)
|
||||
{
|
||||
return is_multirotor(current_status) || (current_status.system_type == VEHICLE_TYPE_HELICOPTER)
|
||||
return is_multirotor(current_status)
|
||||
|| (current_status.system_type == VEHICLE_TYPE_HELICOPTER)
|
||||
|| (current_status.system_type == VEHICLE_TYPE_COAXIAL);
|
||||
}
|
||||
|
||||
bool is_vtol(const vehicle_status_s ¤t_status)
|
||||
{
|
||||
return (current_status.system_type == VEHICLE_TYPE_VTOL_DUOROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_QUADROTOR ||
|
||||
return (current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER_DUOROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER_QUADROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_TILTROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_RESERVED2);
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_FIXEDROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER);
|
||||
}
|
||||
|
||||
bool is_vtol_tailsitter(const vehicle_status_s ¤t_status)
|
||||
{
|
||||
return (current_status.system_type == VEHICLE_TYPE_VTOL_DUOROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_QUADROTOR);
|
||||
return (current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER_DUOROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER_QUADROTOR ||
|
||||
current_status.system_type == VEHICLE_TYPE_VTOL_TAILSITTER);
|
||||
}
|
||||
|
||||
bool is_fixed_wing(const vehicle_status_s ¤t_status)
|
||||
|
||||
Submodule src/modules/mavlink/mavlink updated: b568a60fca...0133e5db7f
@@ -90,10 +90,11 @@ PARAM_DEFINE_INT32(MAV_SIK_RADIO_ID, 0);
|
||||
* @value 13 Hexarotor
|
||||
* @value 14 Octorotor
|
||||
* @value 15 Tricopter
|
||||
* @value 19 VTOL Tailsitter Duo
|
||||
* @value 20 VTOL Tailsitter Quad
|
||||
* @value 19 VTOL Two-rotor Tailsitter
|
||||
* @value 20 VTOL Quad-rotor Tailsitter
|
||||
* @value 21 VTOL Tiltrotor
|
||||
* @value 22 VTOL Standard (quadplane)
|
||||
* @value 22 VTOL Standard (separate fixed rotors for hover and cruise flight)
|
||||
* @value 23 VTOL Tailsitter
|
||||
* @group MAVLink
|
||||
*/
|
||||
PARAM_DEFINE_INT32(MAV_TYPE, 0);
|
||||
|
||||
@@ -1513,11 +1513,11 @@ void MavlinkReceiver::fill_thrust(float *thrust_body_array, uint8_t vehicle_type
|
||||
thrust_body_array[0] = thrust;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_DUOROTOR:
|
||||
case MAV_TYPE_VTOL_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_DUOROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_TILTROTOR:
|
||||
case MAV_TYPE_VTOL_RESERVED2:
|
||||
case MAV_TYPE_VTOL_RESERVED3:
|
||||
case MAV_TYPE_VTOL_FIXEDROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER:
|
||||
case MAV_TYPE_VTOL_RESERVED4:
|
||||
case MAV_TYPE_VTOL_RESERVED5:
|
||||
switch (vehicle_type) {
|
||||
|
||||
@@ -93,9 +93,9 @@ private:
|
||||
if (system_type == MAV_TYPE_QUADROTOR ||
|
||||
system_type == MAV_TYPE_HEXAROTOR ||
|
||||
system_type == MAV_TYPE_OCTOROTOR ||
|
||||
system_type == MAV_TYPE_VTOL_DUOROTOR ||
|
||||
system_type == MAV_TYPE_VTOL_QUADROTOR ||
|
||||
system_type == MAV_TYPE_VTOL_RESERVED2) {
|
||||
system_type == MAV_TYPE_VTOL_TAILSITTER_DUOROTOR ||
|
||||
system_type == MAV_TYPE_VTOL_TAILSITTER_QUADROTOR ||
|
||||
system_type == MAV_TYPE_VTOL_FIXEDROTOR) {
|
||||
|
||||
/* multirotors: set number of rotor outputs depending on type */
|
||||
|
||||
@@ -110,15 +110,15 @@ private:
|
||||
n = 6;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_DUOROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_DUOROTOR:
|
||||
n = 2;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_QUADROTOR:
|
||||
n = 4;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_RESERVED2:
|
||||
case MAV_TYPE_VTOL_FIXEDROTOR:
|
||||
n = 8;
|
||||
break;
|
||||
|
||||
|
||||
@@ -114,7 +114,7 @@ void Simulator::actuator_controls_from_outputs(mavlink_hil_actuator_controls_t *
|
||||
|
||||
switch (_system_type) {
|
||||
case MAV_TYPE_AIRSHIP:
|
||||
case MAV_TYPE_VTOL_DUOROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_DUOROTOR:
|
||||
case MAV_TYPE_COAXIAL:
|
||||
pos_thrust_motors_count = 2;
|
||||
is_fixed_wing = false;
|
||||
@@ -126,13 +126,13 @@ void Simulator::actuator_controls_from_outputs(mavlink_hil_actuator_controls_t *
|
||||
break;
|
||||
|
||||
case MAV_TYPE_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_TAILSITTER_QUADROTOR:
|
||||
case MAV_TYPE_VTOL_TILTROTOR:
|
||||
pos_thrust_motors_count = 4;
|
||||
is_fixed_wing = false;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_RESERVED2:
|
||||
case MAV_TYPE_VTOL_FIXEDROTOR:
|
||||
pos_thrust_motors_count = 5;
|
||||
is_fixed_wing = false;
|
||||
break;
|
||||
@@ -142,7 +142,7 @@ void Simulator::actuator_controls_from_outputs(mavlink_hil_actuator_controls_t *
|
||||
is_fixed_wing = false;
|
||||
break;
|
||||
|
||||
case MAV_TYPE_VTOL_RESERVED3:
|
||||
case MAV_TYPE_VTOL_TAILSITTER:
|
||||
// this is the tricopter VTOL / quad plane with 3 motors and 2 servos
|
||||
pos_thrust_motors_count = 3;
|
||||
is_fixed_wing = false;
|
||||
|
||||
Reference in New Issue
Block a user