1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

Added KISS ESC sensor information for rpm and temperature to debug fields

This commit is contained in:
Bas Delfos 2017-03-28 23:11:23 +02:00
parent c39ab90bc6
commit 8dbb156ea0
3 changed files with 10 additions and 3 deletions

View file

@ -323,7 +323,9 @@ static const char * const lookupTableDebug[DEBUG_COUNT] = {
"ANGLERATE",
"ESC_SENSOR",
"SCHEDULER",
"STACK"
"STACK",
"ESC_SENSOR_RPM",
"ESC_SENSOR_TMP"
};
#ifdef OSD
@ -4041,7 +4043,7 @@ static void cliResource(char *cmdline)
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("\r\n");
}