mirror of https://github.com/ArduPilot/ardupilot
ArduCopter - leds.pde - changed refrences to "motor_armed" to "motors.armed()"
This commit is contained in:
parent
7df17e9b3b
commit
aa54458dcf
|
@ -46,7 +46,7 @@ static void update_GPS_light(void)
|
||||||
|
|
||||||
static void update_motor_light(void)
|
static void update_motor_light(void)
|
||||||
{
|
{
|
||||||
if(motor_armed == false){
|
if(motors.armed() == false){
|
||||||
motor_light = !motor_light;
|
motor_light = !motor_light;
|
||||||
|
|
||||||
// blink
|
// blink
|
||||||
|
@ -100,7 +100,7 @@ static void clear_leds()
|
||||||
#if MOTOR_LEDS == 1
|
#if MOTOR_LEDS == 1
|
||||||
static void update_motor_leds(void)
|
static void update_motor_leds(void)
|
||||||
{
|
{
|
||||||
if (motor_armed == true){
|
if (motors.armed()){
|
||||||
if (low_batt == true){
|
if (low_batt == true){
|
||||||
// blink rear
|
// blink rear
|
||||||
static bool blink = false;
|
static bool blink = false;
|
||||||
|
|
Loading…
Reference in New Issue