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

OLED Display - Add two pages: RX info and Welcome.

The RX info page shows channel letters and bar graphs for the first 8
channels.
The Welcome page shows the target and cleanflight git revision.
This commit is contained in:
Dominic Clifton 2014-09-21 05:09:01 +01:00
parent 94c1023493
commit c898ca4634
7 changed files with 155 additions and 25 deletions

View file

@ -24,6 +24,7 @@
#include <ctype.h>
#include "platform.h"
#include "version.h"
#include "build_config.h"
@ -1167,7 +1168,7 @@ static void cliVersion(char *cmdline)
{
UNUSED(cmdline);
cliPrint("Cleanflight/" __TARGET__ " " __DATE__ " / " __TIME__ " (" __REVISION__ ")");
printf("Cleanflight/%s" __DATE__ " / " __TIME__ " (%s)", targetName, shortGitRevision);
}
void cliProcess(void)