Subversion Repositories FlightCtrl

Rev

Rev 2102 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "controlMixer.h"
#include "timer0.h"
#include "configuration.h"
#include "flight.h"
#include "output.h"

void FC_periodicTaskAndPRYT(uint16_t* PRYT) {
  if (controlMixer_getSignalQuality() <= SIGNAL_BAD) { // the rc-frame signal is not reveived or noisy
    if (controlMixer_didReceiveSignal) {
      beepRCAlarm(); // Only make alarm if a control signal was received before the signal loss.
    }
  }
}

void FC_setNeutral(void) {
}