mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-14 20:10:18 +03:00
Adding release name to the build key output (if provided). (#12201)
This commit is contained in:
parent
d96586d505
commit
a7cf8f0c6a
1 changed files with 5 additions and 1 deletions
|
@ -4814,7 +4814,11 @@ static void cliStatus(const char *cmdName, char *cmdline)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef BUILD_KEY
|
#ifdef BUILD_KEY
|
||||||
cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY));
|
cliPrintf("BUILD KEY: %s", STR(BUILD_KEY));
|
||||||
|
#ifdef RELEASE_NAME
|
||||||
|
cliPrintf(" (%s)", STR(RELEASE_NAME));
|
||||||
|
#endif
|
||||||
|
cliPrintLinefeed();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Uptime and wall clock
|
// Uptime and wall clock
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue