|
|
|
@ -501,10 +501,10 @@ void update_state_machine_mode_manual(int status_pub, struct vehicle_status_s *c
@@ -501,10 +501,10 @@ void update_state_machine_mode_manual(int status_pub, struct vehicle_status_s *c
|
|
|
|
|
{ |
|
|
|
|
int old_mode = current_status->flight_mode; |
|
|
|
|
current_status->flight_mode = VEHICLE_FLIGHT_MODE_MANUAL; |
|
|
|
|
current_status->flag_control_manual_enabled = true; //XXX
|
|
|
|
|
current_status->flag_control_manual_enabled = true; |
|
|
|
|
/* enable attitude control per default */ |
|
|
|
|
current_status->flag_control_attitude_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = false; // XXX
|
|
|
|
|
if (old_mode != current_status->flight_mode) state_machine_publish(status_pub, current_status, mavlink_fd); |
|
|
|
|
|
|
|
|
|
if (current_status->state_machine == SYSTEM_STATE_GROUND_READY || current_status->state_machine == SYSTEM_STATE_STABILIZED || current_status->state_machine == SYSTEM_STATE_AUTO) { |
|
|
|
@ -517,9 +517,9 @@ void update_state_machine_mode_stabilized(int status_pub, struct vehicle_status_
@@ -517,9 +517,9 @@ void update_state_machine_mode_stabilized(int status_pub, struct vehicle_status_
|
|
|
|
|
{ |
|
|
|
|
int old_mode = current_status->flight_mode; |
|
|
|
|
current_status->flight_mode = VEHICLE_FLIGHT_MODE_STABILIZED; |
|
|
|
|
current_status->flag_control_manual_enabled = true; //XXX
|
|
|
|
|
current_status->flag_control_manual_enabled = true; |
|
|
|
|
current_status->flag_control_attitude_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = false; // XXX
|
|
|
|
|
if (old_mode != current_status->flight_mode) state_machine_publish(status_pub, current_status, mavlink_fd); |
|
|
|
|
|
|
|
|
|
if (current_status->state_machine == SYSTEM_STATE_GROUND_READY || current_status->state_machine == SYSTEM_STATE_MANUAL || current_status->state_machine == SYSTEM_STATE_AUTO) { |
|
|
|
@ -532,9 +532,9 @@ void update_state_machine_mode_auto(int status_pub, struct vehicle_status_s *cur
@@ -532,9 +532,9 @@ void update_state_machine_mode_auto(int status_pub, struct vehicle_status_s *cur
|
|
|
|
|
{ |
|
|
|
|
int old_mode = current_status->flight_mode; |
|
|
|
|
current_status->flight_mode = VEHICLE_FLIGHT_MODE_AUTO; |
|
|
|
|
current_status->flag_control_manual_enabled = true; //XXX
|
|
|
|
|
current_status->flag_control_manual_enabled = true; |
|
|
|
|
current_status->flag_control_attitude_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = true; |
|
|
|
|
current_status->flag_control_rates_enabled = false; // XXX
|
|
|
|
|
if (old_mode != current_status->flight_mode) state_machine_publish(status_pub, current_status, mavlink_fd); |
|
|
|
|
|
|
|
|
|
if (current_status->state_machine == SYSTEM_STATE_GROUND_READY || current_status->state_machine == SYSTEM_STATE_MANUAL || current_status->state_machine == SYSTEM_STATE_STABILIZED) { |
|
|
|
|