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

Fix building of targets that don't define LED_STRIP.

This commit is contained in:
Dominic Clifton 2014-09-15 03:27:37 +01:00
parent 043ed0f0bc
commit 94623289fd
3 changed files with 9 additions and 1 deletions

View file

@ -500,6 +500,9 @@ static void cliCMix(char *cmdline)
static void cliLed(char *cmdline)
{
#ifndef LED_STRIP
UNUSED(cmdline);
#else
int i;
uint8_t len;
char *ptr;
@ -523,6 +526,7 @@ static void cliLed(char *cmdline)
printf("Invalid led index: must be < %u\r\n", MAX_LED_STRIP_LENGTH);
}
}
#endif
}
static void dumpValues(uint8_t mask)
@ -622,9 +626,10 @@ static void cliDump(char *cmdline)
buf[i] = '\0';
printf("map %s\r\n", buf);
#ifdef LED_STRIP
printf("\r\n\r\n# led\r\n");
cliLed("");
#endif
printSectionBreak();
dumpValues(MASTER_VALUE);
}