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

CF/BF - Reduce flash usage by re-using a couple of strings.

This commit is contained in:
Hydra 2017-04-08 22:44:37 +01:00 committed by Dominic Clifton
parent 18454ad705
commit 4653cfd4ad

View file

@ -3360,7 +3360,7 @@ static void cliMixer(char *cmdline)
cliPrintf("Mixer: %s\r\n", mixerNames[mixerConfig()->mixerMode - 1]);
return;
} else if (strncasecmp(cmdline, "list", len) == 0) {
cliPrint("Available mixers: ");
cliPrint("Available:");
for (uint32_t i = 0; ; i++) {
if (mixerNames[i] == NULL)
break;