Merge pull request #3850 from bkeinert/bf_cli_dump_diff_patch

change helptext for dump/diff clí commands…
This commit is contained in:
Michael Keller 2017-08-15 11:13:39 +12:00 committed by GitHub
commit 53920103d8
1 changed files with 2 additions and 2 deletions

View File

@ -3500,12 +3500,12 @@ const clicmd_t cmdTable[] = {
CLI_COMMAND_DEF("defaults", "reset to defaults and reboot", NULL, cliDefaults),
CLI_COMMAND_DEF("bl", "reboot into bootloader", NULL, cliBootloader),
CLI_COMMAND_DEF("diff", "list configuration changes from default",
"[master|profile|rates|all] {showdefaults}", cliDiff),
"[master|profile|rates|all] {defaults}", cliDiff),
#ifdef USE_DSHOT
CLI_COMMAND_DEF("dshotprog", "program DShot ESC(s)", "<index> <command>+", cliDshotProg),
#endif
CLI_COMMAND_DEF("dump", "dump configuration",
"[master|profile|rates|all] {showdefaults}", cliDump),
"[master|profile|rates|all] {defaults}", cliDump),
#ifdef USE_ESCSERIAL
CLI_COMMAND_DEF("escprog", "passthrough esc to serial", "<mode [sk/bl/ki/cc]> <index>", cliEscPassthrough),
#endif