Subversion Repositories FlightCtrl

Rev

Rev 2065 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2065 Rev 2069
Line 41... Line 41...
41
int16_t EC_getVariable(uint8_t varNum) {
41
int16_t EC_getVariable(uint8_t varNum) {
42
  return 0;
42
  return 0;
43
}
43
}
Line 44... Line 44...
44
 
44
 
45
uint8_t EC_getSignalQuality(void) {
45
uint8_t EC_getSignalQuality(void) {
46
  if (externalControlActive > 80)
46
  if (externalControlActive > 40)
47
    // Configured and heard from recently
47
    // Configured and heard from recently
Line 48... Line 48...
48
    return SIGNAL_GOOD;
48
    return SIGNAL_GOOD;
49
 
49