1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

Adding display name to OSD and CLI

This commit is contained in:
Sean M 2018-10-17 18:00:41 -04:00 committed by mikeller
parent ae194f2eb3
commit 09fce7f1fa
6 changed files with 55 additions and 0 deletions

View file

@ -29,6 +29,7 @@
typedef struct pilotConfig_s {
char name[MAX_NAME_LENGTH + 1];
char displayName[MAX_NAME_LENGTH + 1];
} pilotConfig_t;
PG_DECLARE(pilotConfig_t, pilotConfig);