From c626f5b0015c0e17b42a0eae7d2c95d2817f98df Mon Sep 17 00:00:00 2001 From: Mark Whitehorn Date: Thu, 19 May 2016 11:13:44 -0600 Subject: [PATCH] shorten pwm init and ramp times --- src/modules/systemlib/pwm_limit/pwm_limit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/systemlib/pwm_limit/pwm_limit.h b/src/modules/systemlib/pwm_limit/pwm_limit.h index 23adc9ee3a..644059e5a4 100644 --- a/src/modules/systemlib/pwm_limit/pwm_limit.h +++ b/src/modules/systemlib/pwm_limit/pwm_limit.h @@ -51,11 +51,11 @@ __BEGIN_DECLS * time for the ESCs to initialize * (this is not actually needed if PWM is sent right after boot) */ -#define INIT_TIME_US 500000 +#define INIT_TIME_US 50000 /* * time to slowly ramp up the ESCs */ -#define RAMP_TIME_US 2500000 +#define RAMP_TIME_US 500000 enum pwm_limit_state { PWM_LIMIT_STATE_OFF = 0,