1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Added serial passthrough settings for Castle Creations

Corrected conditional in setTxSignalEsc
This commit is contained in:
Jeff 2016-11-14 14:03:31 -06:00
parent 7942765ada
commit b62e91df15
2 changed files with 31 additions and 8 deletions

View file

@ -2994,6 +2994,10 @@ static void cliEscPassthrough(char *cmdline)
{
mode = 2;
}
else if(strncasecmp(pch, "cc", strlen(pch)) == 0)
{
mode = 4;
}
else
{
cliShowParseError();