1
0
Fork 0
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:
J Blackman 2022-12-25 10:48:49 +11:00 committed by GitHub
parent 7b70abd118
commit c38bf42059
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;