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

Per line feed rule

This commit is contained in:
jflyper 2017-04-24 14:49:13 +09:00
parent 0eb2b2b394
commit 2034895b27

View file

@ -2862,14 +2862,14 @@ static void cliResource(char *cmdline)
const char* owner; const char* owner;
owner = ownerNames[ioRecs[i].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) { 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 #ifdef MINIMAL_CLI
cliPrintLine("DMA:"); cliPrintLine("DMA:");