1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

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

View file

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