diff --git a/src/main/config/config_eeprom.h b/src/main/config/config_eeprom.h index 179eed3637..a012ae9dba 100644 --- a/src/main/config/config_eeprom.h +++ b/src/main/config/config_eeprom.h @@ -17,7 +17,7 @@ #pragma once -#define EEPROM_CONF_VERSION 148 +#define EEPROM_CONF_VERSION 149 void initEEPROM(void); void writeEEPROM(); diff --git a/src/main/drivers/pwm_output.h b/src/main/drivers/pwm_output.h index 64c31292c9..0a61d9155f 100644 --- a/src/main/drivers/pwm_output.h +++ b/src/main/drivers/pwm_output.h @@ -27,11 +27,11 @@ typedef enum { PWM_TYPE_ONESHOT42, PWM_TYPE_MULTISHOT, PWM_TYPE_BRUSHED, + PWM_TYPE_DSHOT1200, + PWM_TYPE_DSHOT900, PWM_TYPE_DSHOT600, PWM_TYPE_DSHOT300, PWM_TYPE_DSHOT150, - PWM_TYPE_DSHOT900, - PWM_TYPE_DSHOT1200, PWM_TYPE_MAX } motorPwmProtocolTypes_e; diff --git a/src/main/fc/serial_cli.c b/src/main/fc/serial_cli.c index 0df34424d7..2df3d2a4d9 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 - "DSHOT600", "DSHOT300", "DSHOT150", "DSHOT900", "DSHOT1200", + "DSHOT1200", "DSHOT900", "DSHOT600", "DSHOT300", "DSHOT150", #endif };