diff options
author | root <root@avtech.domain.avtechpulse.com> | 2000-01-01 00:05:35 +0900 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 2000-01-01 00:05:35 +0900 |
commit | 219197bc34ecf91c4db62fd17ef3002e9b81f4c2 (patch) | |
tree | 6e256237d5bec4d35be719d8063fe3dbe2a255fa /instr-daemon.c | |
parent | 07c0216dbc58f513ac50c70f2b024cebdbd256bc (diff) |
enable most bus features on Olimex
Diffstat (limited to 'instr-daemon.c')
-rw-r--r-- | instr-daemon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instr-daemon.c b/instr-daemon.c index 8b2d0e6..40bdf62 100644 --- a/instr-daemon.c +++ b/instr-daemon.c @@ -380,7 +380,8 @@ static gboolean periodic_poll (void) { gboolean power_fail; - power_fail = (globals.HWDetect.has_gpio && bus_getpin (POWER_FAIL)); + // TODO - remove Olimex qualification once ethernet-enabled carrier board is available + power_fail = globals.HWDetect.has_gpio && bus_getpin (POWER_FAIL) && !globals.HWDetect.olimex; if (power_fail) { // verify after a short delay (25 ms), to ignore short power glitches |