Fix from review.

This commit is contained in:
mikeller 2018-06-10 03:21:27 +12:00
parent 0c045b8ec5
commit 2f0c8d26ff
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,6 @@ const char * const debugModeNames[DEBUG_COUNT] = {
"FFT_TIME", "FFT_TIME",
"FFT_FREQ", "FFT_FREQ",
"RX_FRSKY_SPI", "RX_FRSKY_SPI",
"RX_SIGNAL_LOSS",
"GYRO_RAW", "GYRO_RAW",
"DUAL_GYRO", "DUAL_GYRO",
"DUAL_GYRO_RAW", "DUAL_GYRO_RAW",
@ -73,4 +72,5 @@ const char * const debugModeNames[DEBUG_COUNT] = {
"ITERM_RELAX", "ITERM_RELAX",
"ACRO_TRAINER", "ACRO_TRAINER",
"RC_SMOOTHING", "RC_SMOOTHING",
"RX_SIGNAL_LOSS",
}; };

View File

@ -68,7 +68,6 @@ typedef enum {
DEBUG_FFT_TIME, DEBUG_FFT_TIME,
DEBUG_FFT_FREQ, DEBUG_FFT_FREQ,
DEBUG_RX_FRSKY_SPI, DEBUG_RX_FRSKY_SPI,
DEBUG_RX_SIGNAL_LOSS,
DEBUG_GYRO_RAW, DEBUG_GYRO_RAW,
DEBUG_DUAL_GYRO, DEBUG_DUAL_GYRO,
DEBUG_DUAL_GYRO_RAW, DEBUG_DUAL_GYRO_RAW,
@ -91,6 +90,7 @@ typedef enum {
DEBUG_ITERM_RELAX, DEBUG_ITERM_RELAX,
DEBUG_ACRO_TRAINER, DEBUG_ACRO_TRAINER,
DEBUG_RC_SMOOTHING, DEBUG_RC_SMOOTHING,
DEBUG_RX_SIGNAL_LOSS,
DEBUG_COUNT DEBUG_COUNT
} debugType_e; } debugType_e;