mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 21:05:35 +03:00
Per line feed rule
This commit is contained in:
parent
0eb2b2b394
commit
2034895b27
1 changed files with 4 additions and 4 deletions
|
@ -2862,14 +2862,14 @@ 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);
|
||||
}
|
||||
cliPrintBlankLine();
|
||||
cliPrint("\r\n");
|
||||
}
|
||||
|
||||
cliPrintBlankLine(); // cliPrintLine("\r\n");
|
||||
cliPrintBlankLine();
|
||||
|
||||
#ifdef MINIMAL_CLI
|
||||
cliPrintLine("DMA:");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue