Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/main/build/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@

#include "common/utils.h"

#define FC_FIRMWARE_NAME "Betaflight"
#define FC_FIRMWARE_IDENTIFIER "BTFL"
#define FC_VERSION_MAJOR 4 // increment when a major release is made (big new feature, etc)
#define FC_VERSION_MINOR 3 // increment when a minor release is made (small new feature, change etc)
#define FC_VERSION_PATCH_LEVEL 2 // increment when a bug is fixed
#define FC_FIRMWARE_NAME "EmuFlight"
#define FC_FIRMWARE_IDENTIFIER "EmuF" // case-sensitive to distinguish from legacy EMUF 0.X
#define FC_VERSION_MAJOR 1 // increment when a major release is made (big new feature, etc)
#define FC_VERSION_MINOR 0 // increment when a minor release is made (small new feature, change etc)
#define FC_VERSION_PATCH_LEVEL 0 // increment when a bug is fixed

#define FC_VERSION_STRING STR(FC_VERSION_MAJOR) "." STR(FC_VERSION_MINOR) "." STR(FC_VERSION_PATCH_LEVEL)

Expand Down
2 changes: 1 addition & 1 deletion src/main/io/displayport_srxl.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static int srxlClearScreen(displayPort_t *displayPort, displayClearOption_e opti
srxlWriteChar(displayPort, col, row, DISPLAYPORT_ATTR_NONE, ' ');
}
}
srxlWriteString(displayPort, 1, 0, DISPLAYPORT_ATTR_NONE, "BETAFLIGHT");
srxlWriteString(displayPort, 1, 0, DISPLAYPORT_ATTR_NONE, "EMUFLIGHT");

if (displayPort->grabCount == 0) {
srxlWriteString(displayPort, 0, 2, DISPLAYPORT_ATTR_NONE, CMS_STARTUP_HELP_TEXT1);
Expand Down
Loading