sylvandb / gruvin9x

Automatically exported from code.google.com/p/gruvin9x
0 stars 0 forks source link

NO DATA Alarm needs to become aware of A1/A2==0 in model set-up (to disable itself regardless of global setting.) #31

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The NO DATA Alarm is currently a system wide setting only. It should also be in 
the model settings menus and eeprom storage.

myeeprom.h
typedef struct t_EEGeneral {
  ...
  uint8_t   enableTelemetryWarning:1;   // 0=no, 1=yes (Sound alarm when there's no telem. data coming in)
}

typedef struct t_FrSkyData {
  FrSkyChannelData channels[2];

  uint8_t   enableTelemetryWarning:1;   // 0=no, 1=yes *** SHOULD PROBABLY GO HERE ***

} __attribute__((packed)) FrSkyData;

Original issue reported on code.google.com by gru...@gmail.com on 3 Jul 2011 at 9:29

GoogleCodeExporter commented 8 years ago
Of course, the alarm itself will need to become aware of the global override 
condition ([RADIO SETUP / NO DATA Alarm OFF] should silence the alarm for all 
models, regardless of their individual setting.)

Original comment by gru...@gmail.com on 3 Jul 2011 at 9:32

GoogleCodeExporter commented 8 years ago
I'll take all that back. The no data alarm should simply disable itself if both 
A1 and A2 == 0 in model set-up. This is yet to be done though, so the issue 
remains open.

Original comment by gru...@gmail.com on 26 Jul 2011 at 2:45

GoogleCodeExporter commented 8 years ago

Original comment by gru...@gmail.com on 26 Jul 2011 at 2:46

GoogleCodeExporter commented 8 years ago
Should be ok now!

Original comment by bson...@gmail.com on 27 Jul 2011 at 11:24

GoogleCodeExporter commented 8 years ago

Original comment by gru...@gmail.com on 23 Sep 2011 at 1:52