Skip to content
Snippets Groups Projects
Commit fd05c094 authored by Beat Küng's avatar Beat Küng
Browse files

vmount: fix param types, use int32_t

parent 6e35cb00
No related branches found
No related tags found
No related merge requests found
......@@ -81,15 +81,15 @@ struct ThreadData {
static volatile ThreadData *g_thread_data = nullptr;
struct Parameters {
int mnt_mode_in;
int mnt_mode_out;
int mnt_mav_sysid;
int mnt_mav_compid;
int mnt_ob_lock_mode;
int mnt_ob_norm_mode;
int mnt_man_pitch;
int mnt_man_roll;
int mnt_man_yaw;
int32_t mnt_mode_in;
int32_t mnt_mode_out;
int32_t mnt_mav_sysid;
int32_t mnt_mav_compid;
int32_t mnt_ob_lock_mode;
int32_t mnt_ob_norm_mode;
int32_t mnt_man_pitch;
int32_t mnt_man_roll;
int32_t mnt_man_yaw;
bool operator!=(const Parameters &p)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment