Plane: cleanup some coverity warnings

This commit is contained in:
Andrew Tridgell 2015-06-20 13:26:34 +10:00
parent ae1f2e8bea
commit 2dbe372b2f
2 changed files with 18 additions and 17 deletions

View File

@ -551,6 +551,7 @@ bool Plane::telemetry_delayed(mavlink_channel_t chan)
// check if a message will fit in the payload space available // check if a message will fit in the payload space available
#define CHECK_PAYLOAD_SIZE(id) if (txspace < MAVLINK_NUM_NON_PAYLOAD_BYTES+MAVLINK_MSG_ID_ ## id ## _LEN) return false #define CHECK_PAYLOAD_SIZE(id) if (txspace < MAVLINK_NUM_NON_PAYLOAD_BYTES+MAVLINK_MSG_ID_ ## id ## _LEN) return false
#define CHECK_PAYLOAD_SIZE2(id) if (!HAVE_PAYLOAD_SPACE(chan, id)) return false
// try to send a message, return false if it won't fit in the serial tx buffer // try to send a message, return false if it won't fit in the serial tx buffer
bool GCS_MAVLINK::try_send_message(enum ap_message id) bool GCS_MAVLINK::try_send_message(enum ap_message id)
@ -579,7 +580,7 @@ bool GCS_MAVLINK::try_send_message(enum ap_message id)
case MSG_EXTENDED_STATUS1: case MSG_EXTENDED_STATUS1:
CHECK_PAYLOAD_SIZE(SYS_STATUS); CHECK_PAYLOAD_SIZE(SYS_STATUS);
plane.send_extended_status1(chan); plane.send_extended_status1(chan);
CHECK_PAYLOAD_SIZE(POWER_STATUS); CHECK_PAYLOAD_SIZE2(POWER_STATUS);
plane.gcs[chan-MAVLINK_COMM_0].send_power_status(); plane.gcs[chan-MAVLINK_COMM_0].send_power_status();
break; break;
@ -692,7 +693,7 @@ bool GCS_MAVLINK::try_send_message(enum ap_message id)
case MSG_SIMSTATE: case MSG_SIMSTATE:
CHECK_PAYLOAD_SIZE(SIMSTATE); CHECK_PAYLOAD_SIZE(SIMSTATE);
plane.send_simstate(chan); plane.send_simstate(chan);
CHECK_PAYLOAD_SIZE(AHRS2); CHECK_PAYLOAD_SIZE2(AHRS2);
plane.gcs[chan-MAVLINK_COMM_0].send_ahrs2(plane.ahrs); plane.gcs[chan-MAVLINK_COMM_0].send_ahrs2(plane.ahrs);
break; break;

View File

@ -565,19 +565,19 @@ private:
const struct Location &home = ahrs.get_home(); const struct Location &home = ahrs.get_home();
// Flag for if we have g_gps lock and have set the home location in AHRS // Flag for if we have g_gps lock and have set the home location in AHRS
enum HomeState home_is_set; enum HomeState home_is_set = HOME_UNSET;
// The location of the previous waypoint. Used for track following and altitude ramp calculations // The location of the previous waypoint. Used for track following and altitude ramp calculations
Location prev_WP_loc; Location prev_WP_loc {};
// The plane's current location // The plane's current location
struct Location current_loc; struct Location current_loc {};
// The location of the current/active waypoint. Used for altitude ramp, track following and loiter calculations. // The location of the current/active waypoint. Used for altitude ramp, track following and loiter calculations.
Location next_WP_loc; Location next_WP_loc {};
// The location of the active waypoint in Guided mode. // The location of the active waypoint in Guided mode.
struct Location guided_WP_loc; struct Location guided_WP_loc {};
// special purpose command used only after mission completed to return vehicle to home or rally point // special purpose command used only after mission completed to return vehicle to home or rally point
struct AP_Mission::Mission_Command auto_rtl_command; struct AP_Mission::Mission_Command auto_rtl_command;
@ -603,7 +603,7 @@ private:
// lookahead value for height error reporting // lookahead value for height error reporting
float lookahead; float lookahead;
#endif #endif
} target_altitude; } target_altitude {};
// INS variables // INS variables
// The main loop execution time. Seconds // The main loop execution time. Seconds
@ -612,21 +612,21 @@ private:
// Performance monitoring // Performance monitoring
// Timer used to accrue data and trigger recording of the performanc monitoring log message // Timer used to accrue data and trigger recording of the performanc monitoring log message
uint32_t perf_mon_timer; uint32_t perf_mon_timer = 0;
// The maximum and minimum main loop execution time recorded in the current performance monitoring interval // The maximum and minimum main loop execution time recorded in the current performance monitoring interval
uint32_t G_Dt_max; uint32_t G_Dt_max = 0;
uint32_t G_Dt_min; uint32_t G_Dt_min = 0;
// System Timers // System Timers
// Time in microseconds of start of main control loop // Time in microseconds of start of main control loop
uint32_t fast_loopTimer_us; uint32_t fast_loopTimer_us = 0;
// Number of milliseconds used in last main loop cycle // Number of milliseconds used in last main loop cycle
uint32_t delta_us_fast_loop; uint32_t delta_us_fast_loop = 0;
// Counter of main loop executions. Used for performance monitoring and failsafe processing // Counter of main loop executions. Used for performance monitoring and failsafe processing
uint16_t mainLoop_count; uint16_t mainLoop_count = 0;
// Camera/Antenna mount tracking and stabilisation stuff // Camera/Antenna mount tracking and stabilisation stuff
#if MOUNT == ENABLED #if MOUNT == ENABLED
@ -643,13 +643,13 @@ private:
static const AP_Scheduler::Task scheduler_tasks[]; static const AP_Scheduler::Task scheduler_tasks[];
static const AP_Param::Info var_info[]; static const AP_Param::Info var_info[];
bool demoing_servos; bool demoing_servos = false;
// use this to prevent recursion during sensor init // use this to prevent recursion during sensor init
bool in_mavlink_delay; bool in_mavlink_delay = false;
// true if we are out of time in our event timeslice // true if we are out of time in our event timeslice
bool gcs_out_of_time; bool gcs_out_of_time = false;
void demo_servos(uint8_t i); void demo_servos(uint8_t i);