From: Keith Packard Date: Fri, 20 Nov 2009 19:55:28 +0000 (-0800) Subject: Reduce igniter firing time from 500ms to 50ms. X-Git-Tag: debian/0.6+32+g87e6f3e~3 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=6894541e0ee144bfc689cc02d4ed333711d3b500 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 --- 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 {