mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 19:40:31 +03:00
FIX: Assist in debugging by including the build key (#12085)
This commit is contained in:
parent
7b70abd118
commit
c38bf42059
1 changed files with 4 additions and 0 deletions
|
@ -4817,6 +4817,10 @@ static void cliStatus(const char *cmdName, char *cmdline)
|
|||
|
||||
cliPrintf("System Uptime: %d seconds", millis() / 1000);
|
||||
|
||||
#ifdef BUILD_KEY
|
||||
cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY));
|
||||
#endif
|
||||
|
||||
#ifdef USE_RTC_TIME
|
||||
char buf[FORMATTED_DATE_TIME_BUFSIZE];
|
||||
dateTime_t dt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue