mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
Space-saving
This commit is contained in:
parent
07b1918acd
commit
0aa40e822a
1 changed files with 5 additions and 5 deletions
|
@ -2862,15 +2862,15 @@ static void cliResource(char *cmdline)
|
|||
const char* owner;
|
||||
owner = ownerNames[ioRecs[i].owner];
|
||||
|
||||
cliPrintf("%c%02d: %s", IO_GPIOPortIdx(ioRecs + i) + 'A', IO_GPIOPinIdx(ioRecs + i), owner);
|
||||
cliPrintf("%c%02d: %s ", IO_GPIOPortIdx(ioRecs + i) + 'A', IO_GPIOPinIdx(ioRecs + i), owner);
|
||||
if (ioRecs[i].index > 0) {
|
||||
cliPrintf(" %d", ioRecs[i].index);
|
||||
cliPrintf("%d", ioRecs[i].index);
|
||||
}
|
||||
cliPrintLine("");
|
||||
cliPrintBlankLine();
|
||||
}
|
||||
|
||||
cliPrintLine("");
|
||||
cliPrintLine("");
|
||||
cliPrintBlankLine();
|
||||
cliPrintBlankLine();
|
||||
#ifdef MINIMAL_CLI
|
||||
cliPrintLine("DMA:");
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue