mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 04:45:24 +03:00
Fix status output (#12096)
This commit is contained in:
parent
599a9c66cb
commit
f3404bfcbb
1 changed files with 4 additions and 4 deletions
|
@ -4813,14 +4813,14 @@ static void cliStatus(const char *cmdName, char *cmdline)
|
||||||
cliPrintLinef("OSD: %s", lookupTableOsdDisplayPortDevice[displayPortDeviceType]);
|
cliPrintLinef("OSD: %s", lookupTableOsdDisplayPortDevice[displayPortDeviceType]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Uptime and wall clock
|
|
||||||
|
|
||||||
cliPrintf("System Uptime: %d seconds", millis() / 1000);
|
|
||||||
|
|
||||||
#ifdef BUILD_KEY
|
#ifdef BUILD_KEY
|
||||||
cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY));
|
cliPrintLinef("BUILD KEY: %s", STR(BUILD_KEY));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Uptime and wall clock
|
||||||
|
|
||||||
|
cliPrintf("System Uptime: %d seconds", millis() / 1000);
|
||||||
|
|
||||||
#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