1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Enables retrieval of the RELEASE_NAME using MSP2 (#12878)

Retrieve releasename
This commit is contained in:
Mark Haslinghuis 2023-06-11 02:28:52 +02:00 committed by GitHub
parent 16776dc29f
commit 7d1007ea03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 9 deletions

View file

@ -30,8 +30,14 @@ const char * const shortConfigGitRevision = __CONFIG_REVISION__;
const char * const buildDate = __DATE__;
const char * const buildTime = __TIME__;
#if defined(BUILD_KEY)
const char * const buildKey = STR(BUILD_KEY);
#ifdef BUILD_KEY
const char * const buildKey = STR(BUILD_KEY);
#else
const char * const buildKey = " ";
const char * const buildKey = NULL;
#endif
#if defined(BUILD_KEY) && defined(RELEASE_NAME)
const char * const releaseName = STR(RELEASE_NAME);
#else
const char * const releaseName = NULL;
#endif

View file

@ -47,3 +47,4 @@ extern const char* const buildTime; // "HH:MM:SS"
#define MSP_API_VERSION_STRING STR(API_VERSION_MAJOR) "." STR(API_VERSION_MINOR)
extern const char* const buildKey;
extern const char* const releaseName;

View file

@ -4728,14 +4728,13 @@ static void cliStatus(const char *cmdName, char *cmdline)
cliPrintLinef("OSD: %s (%u x %u)", lookupTableOsdDisplayPortDevice[displayPortDeviceType], osdDisplayPort->cols, osdDisplayPort->rows);
#endif
#ifdef BUILD_KEY
if (buildKey) {
cliPrintf("BUILD KEY: %s", buildKey);
#ifdef RELEASE_NAME
cliPrintf(" (%s)", STR(RELEASE_NAME));
#endif
if (releaseName) {
cliPrintf(" (%s)", releaseName);
}
cliPrintLinefeed();
#endif
}
// Uptime and wall clock
cliPrintf("System Uptime: %d seconds", millis() / 1000);

View file

@ -2551,10 +2551,16 @@ static mspResult_e mspFcProcessOutCommandWithArg(mspDescriptor_t srcDesc, int16_
textVar = buildKey;
break;
case MSP2TEXT_RELEASENAME:
textVar = releaseName;
break;
default:
return MSP_RESULT_ERROR;
}
if (!textVar) return MSP_RESULT_ERROR;
const uint8_t textLength = strlen(textVar);
// type byte, then length byte followed by the actual characters

View file

@ -33,3 +33,4 @@
#define MSP2TEXT_PID_PROFILE_NAME 3
#define MSP2TEXT_RATE_PROFILE_NAME 4
#define MSP2TEXT_BUILDKEY 5
#define MSP2TEXT_RELEASENAME 6

View file

@ -68,6 +68,8 @@ extern "C" {
const uint16_t valueTableEntryCount = ARRAYLEN(valueTable);
const lookupTableEntry_t lookupTables[] = {};
const char * const lookupTableOsdDisplayPortDevice[] = {};
const char * const buildKey = NULL;
const char * const releaseName = NULL;
PG_REGISTER(osdConfig_t, osdConfig, PG_OSD_CONFIG, 0);