Merge pull request #1979 from mikeller/fix_esc_debug_defines

Fixed DEBUG defines for ESC feedback.
This commit is contained in:
Michael Keller 2017-01-03 22:14:13 +13:00 committed by GitHub
commit c5d990ca49
1 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ set debug_mode = DEBUG_ESC_TELEMETRY in cli
#ifdef USE_DSHOT #ifdef USE_DSHOT
enum { enum {
DEBUG_ESC_MOTOR_INDEX = 1, DEBUG_ESC_MOTOR_INDEX = 0,
DEBUG_ESC_NUM_TIMEOUTS = 2, DEBUG_ESC_NUM_TIMEOUTS = 1,
DEBUG_ESC_TEMPERATURE = 3, DEBUG_ESC_TEMPERATURE = 2,
DEBUG_ESC_RPM = 3 DEBUG_ESC_RPM = 3
}; };