Merge pull request #205 from mikeller/betaflight

Added 'rateprofile X' header to rateprofile dump in 'dump profile'.
This commit is contained in:
borisbstyle 2016-02-21 13:05:37 +01:00
commit 3f396be34b
2 changed files with 12 additions and 7987 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1837,15 +1837,21 @@ static void cliDump(char *cmdline)
printSectionBreak();
dumpValues(PROFILE_VALUE);
cliPrint("\r\n# rateprofile\r\n");
cliRateProfile("");
printSectionBreak();
dumpValues(PROFILE_RATE_VALUE);
}
if (dumpMask & DUMP_RATES) {
cliPrint("\r\n# dump rates\r\n");
cliPrint("\r\n# rateprofile\r\n");
cliRateProfile("");
printSectionBreak();
cliPrint("\r\n# dump rates\r\n");
cliPrint("\r\n# rateprofile\r\n");
cliRateProfile("");
printSectionBreak();
dumpValues(PROFILE_RATE_VALUE);
}