diff options
author | Keith Packard <keithp@keithp.com> | 2009-11-20 11:55:28 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-11-20 12:10:19 -0800 |
commit | 6894541e0ee144bfc689cc02d4ed333711d3b500 (patch) | |
tree | 9897ff1e2d44715d4774dff19c7d4daccb74d114 /src | |
parent | b75aa1c825b84bd7fa1578320fbc7e904c373a7d (diff) |
Reduce igniter firing time from 500ms to 50ms.
Given that the system will brown-out with the longer pulse, it doesn't
make sense to even try; failure at 50ms probably indicates a short.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ao_ignite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_ignite.c b/src/ao_ignite.c index 981cf0ce..4093b6a7 100644 --- a/src/ao_ignite.c +++ b/src/ao_ignite.c @@ -26,7 +26,7 @@ /* test these values with real igniters */ #define AO_IGNITER_OPEN 1000 #define AO_IGNITER_CLOSED 7000 -#define AO_IGNITER_FIRE_TIME AO_MS_TO_TICKS(500) +#define AO_IGNITER_FIRE_TIME AO_MS_TO_TICKS(50) #define AO_IGNITER_CHARGE_TIME AO_MS_TO_TICKS(2000) struct ao_ignition { |