1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Extend build info with defined flags (#13333)

* Extend build info with defined flags

* Fix CI

* Formatting

* Update license header

* Build options (WIP)

* Review fixes

* Add MSP build info generator

* Review fixes

* Add input hash

* Fix for PascalCase

* Add comment about MSP version
This commit is contained in:
Károly Kiripolszky 2024-03-21 18:29:22 +01:00 committed by GitHub
parent b9b4b77e3b
commit 9dfa09a07e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 432 additions and 0 deletions

View file

@ -107,6 +107,7 @@
#include "io/vtx_msp.h"
#include "msp/msp_box.h"
#include "msp/msp_build_info.h"
#include "msp/msp_protocol.h"
#include "msp/msp_protocol_v2_betaflight.h"
#include "msp/msp_protocol_v2_common.h"
@ -749,6 +750,8 @@ static bool mspCommonProcessOutCommand(int16_t cmdMSP, sbuf_t *dst, mspPostProce
sbufWriteData(dst, buildDate, BUILD_DATE_LENGTH);
sbufWriteData(dst, buildTime, BUILD_TIME_LENGTH);
sbufWriteData(dst, shortGitRevision, GIT_SHORT_REVISION_LENGTH);
// Added in API version 1.47
sbufWriteBuildInfoFlags(dst);
break;
case MSP_ANALOG: