1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 21:35:44 +03:00

Merge pull request #1556 from CC-Jeff/master

Passthrough Settings for Castle Creations ESCs
This commit is contained in:
borisbstyle 2016-11-15 00:16:54 +01:00 committed by GitHub
commit ae269db9e2
2 changed files with 31 additions and 7 deletions

View file

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