vtol_att_control:Fix type

This commit is contained in:
David Sidrane 2021-04-22 11:38:38 -07:00 committed by Julian Oes
parent bec5d6de9b
commit 8d078eb02e

View File

@ -1,6 +1,6 @@
/****************************************************************************
*
* Copyright (c) 2015 PX4 Development Team. All rights reserved.
* Copyright (c) 2015, 2021 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -76,7 +76,7 @@ struct Params {
float dec_to_pitch_i;
float back_trans_dec_sp;
bool vt_mc_on_fmu;
int vt_forward_thrust_enable_mode;
int32_t vt_forward_thrust_enable_mode;
float mpc_land_alt1;
float mpc_land_alt2;
};