1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

Blackbox header and function name tidy

This commit is contained in:
Martin Budden 2017-07-29 11:48:18 +01:00
parent bacc6e6fb1
commit 0118af7eb3
6 changed files with 6 additions and 6 deletions

View file

@ -1143,7 +1143,7 @@ static bool sendFieldDefinition(char mainFrameChar, char deltaFrameChar, const v
// The first header is a field name
if (xmitState.headerIndex == 0) {
blackboxPrint(def->name);
blackboxWriteString(def->name);
// Do we need to print an index in brackets after the name?
if (def->fieldNameIndex != -1) {
@ -1359,7 +1359,7 @@ void blackboxLogEvent(FlightLogEvent event, flightLogEventData_t *data)
blackboxWriteUnsignedVB(data->loggingResume.currentTime);
break;
case FLIGHT_LOG_EVENT_LOG_END:
blackboxPrint("End of log");
blackboxWriteString("End of log");
blackboxWrite(0);
break;
}