forked from Archive/PX4-Autopilot
vmount: fix param types, use int32_t
This commit is contained in:
parent
6e35cb002f
commit
fd05c09447
|
@ -81,15 +81,15 @@ struct ThreadData {
|
||||||
static volatile ThreadData *g_thread_data = nullptr;
|
static volatile ThreadData *g_thread_data = nullptr;
|
||||||
|
|
||||||
struct Parameters {
|
struct Parameters {
|
||||||
int mnt_mode_in;
|
int32_t mnt_mode_in;
|
||||||
int mnt_mode_out;
|
int32_t mnt_mode_out;
|
||||||
int mnt_mav_sysid;
|
int32_t mnt_mav_sysid;
|
||||||
int mnt_mav_compid;
|
int32_t mnt_mav_compid;
|
||||||
int mnt_ob_lock_mode;
|
int32_t mnt_ob_lock_mode;
|
||||||
int mnt_ob_norm_mode;
|
int32_t mnt_ob_norm_mode;
|
||||||
int mnt_man_pitch;
|
int32_t mnt_man_pitch;
|
||||||
int mnt_man_roll;
|
int32_t mnt_man_roll;
|
||||||
int mnt_man_yaw;
|
int32_t mnt_man_yaw;
|
||||||
|
|
||||||
bool operator!=(const Parameters &p)
|
bool operator!=(const Parameters &p)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue