diff --git a/src/main/io/serial_cli.c b/src/main/io/serial_cli.c index eddbf960af..8887f401bc 100644 --- a/src/main/io/serial_cli.c +++ b/src/main/io/serial_cli.c @@ -1477,15 +1477,6 @@ static void cliDump(char *cmdline) ); } - // print servo directions - for (i = 0; i < MAX_SUPPORTED_SERVOS; i++) { - for (channel = 0; channel < INPUT_SOURCE_COUNT; channel++) { - if (servoDirection(i, channel) < 0) { - printf("smix reverse %d %d r\r\n", i , channel); - } - } - } - #endif cliPrint("\r\n\r\n# feature\r\n"); @@ -1549,6 +1540,16 @@ static void cliDump(char *cmdline) cliServo(""); + // print servo directions + for (i = 0; i < MAX_SUPPORTED_SERVOS; i++) { + for (channel = 0; channel < INPUT_SOURCE_COUNT; channel++) { + if (servoDirection(i, channel) < 0) { + printf("smix reverse %d %d r\r\n", i , channel); + } + } + } + + printSectionBreak(); dumpValues(PROFILE_VALUE);