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:
parent
18454ad705
commit
4653cfd4ad
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue