mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-14 20:10:18 +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);
|
cliPrintf("System Uptime: %d seconds", millis() / 1000);
|
||||||
|
|
||||||
|
#ifdef BUILD_KEY
|
||||||
|
cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY));
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef USE_RTC_TIME
|
#ifdef USE_RTC_TIME
|
||||||
char buf[FORMATTED_DATE_TIME_BUFSIZE];
|
char buf[FORMATTED_DATE_TIME_BUFSIZE];
|
||||||
dateTime_t dt;
|
dateTime_t dt;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue