From b40dadff47a40f72992999e788f3dda79c2bdc19 Mon Sep 17 00:00:00 2001 From: blckmn Date: Sun, 8 Jan 2017 09:51:55 +1100 Subject: [PATCH] Reverting ability to enable dshot900 and dshot1200 until configurator release --- src/main/drivers/pwm_output.h | 2 +- src/main/fc/serial_cli.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/drivers/pwm_output.h b/src/main/drivers/pwm_output.h index ea231f5a0..01a8fee81 100644 --- a/src/main/drivers/pwm_output.h +++ b/src/main/drivers/pwm_output.h @@ -30,9 +30,9 @@ typedef enum { PWM_TYPE_DSHOT150, PWM_TYPE_DSHOT300, PWM_TYPE_DSHOT600, + PWM_TYPE_MAX, PWM_TYPE_DSHOT900, PWM_TYPE_DSHOT1200, - PWM_TYPE_MAX } motorPwmProtocolTypes_e; #define PWM_TIMER_MHZ 1 diff --git a/src/main/fc/serial_cli.c b/src/main/fc/serial_cli.c index a03119432..4b00c934e 100755 --- a/src/main/fc/serial_cli.c +++ b/src/main/fc/serial_cli.c @@ -334,7 +334,7 @@ static const char * const lookupTableSuperExpoYaw[] = { static const char * const lookupTablePwmProtocol[] = { "OFF", "ONESHOT125", "ONESHOT42", "MULTISHOT", "BRUSHED", #ifdef USE_DSHOT - "DSHOT150", "DSHOT300", "DSHOT600", "DSHOT900", "DSHOT1200", + "DSHOT150", "DSHOT300", "DSHOT600", /*"DSHOT900", "DSHOT1200",*/ #endif };