Browse Source

AP_Arming: Reduce header scope, remove width specifier

master
Michael du Breuil 6 years ago committed by Randy Mackay
parent
commit
1b2b7385a2
  1. 4
      libraries/AP_Arming/AP_Arming.h

4
libraries/AP_Arming/AP_Arming.h

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
#include <AP_HAL/AP_HAL.h>
#include <AP_Param/AP_Param.h>
#include <AP_AHRS/AP_AHRS.h>
#include <AP_InertialSensor/AP_InertialSensor.h>
#include <RC_Channel/RC_Channel.h>
class AP_Arming {
@ -86,7 +86,7 @@ protected: @@ -86,7 +86,7 @@ protected:
AP_Int32 _required_mission_items;
// internal members
bool armed:1;
bool armed;
uint32_t last_accel_pass_ms[INS_MAX_INSTANCES];
uint32_t last_gyro_pass_ms[INS_MAX_INSTANCES];

Loading…
Cancel
Save