1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Removed unused PID settings.

This commit is contained in:
mikeller 2018-07-21 19:00:22 +12:00
parent 5e2fefe036
commit ec06575203
4 changed files with 10 additions and 38 deletions

View file

@ -143,18 +143,6 @@ static uint8_t rebootMode;
#ifndef USE_OSD_SLAVE
static const char pidnames[] =
"ROLL;"
"PITCH;"
"YAW;"
"ALT;"
"Pos;"
"PosR;"
"NavR;"
"LEVEL;"
"MAG;"
"VEL;";
typedef enum {
MSP_SDCARD_STATE_NOT_PRESENT = 0,
MSP_SDCARD_STATE_FATAL = 1,
@ -984,7 +972,7 @@ static bool mspProcessOutCommand(uint8_t cmdMSP, sbuf_t *dst)
break;
case MSP_PIDNAMES:
for (const char *c = pidnames; *c; c++) {
for (const char *c = pidNames; *c; c++) {
sbufWriteU8(dst, *c);
}
break;