commit
edfb0e0aa2
|
@ -1,6 +1,6 @@
|
||||||
# Betaflight
|
# Betaflight
|
||||||
|
|
||||||
![Betaflight](https://dl.dropboxusercontent.com/u/31537757/betaflight%20logo.jpg)
|
![Betaflight](http://static.rcgroups.net/forums/attachments/6/1/0/3/7/6/a9088900-228-bf_logo.jpg)
|
||||||
|
|
||||||
Clean-code version of baseflight flight-controller - flight controllers are used to fly multi-rotor craft and fixed wing craft.
|
Clean-code version of baseflight flight-controller - flight controllers are used to fly multi-rotor craft and fixed wing craft.
|
||||||
|
|
||||||
|
|
|
@ -2675,7 +2675,7 @@ static void cliPrintVarRange(const clivalue_t *var)
|
||||||
{
|
{
|
||||||
switch (var->type & VALUE_MODE_MASK) {
|
switch (var->type & VALUE_MODE_MASK) {
|
||||||
case (MODE_DIRECT): {
|
case (MODE_DIRECT): {
|
||||||
cliPrintf("Allowed range: %d - %d\n", var->config.minmax.min, var->config.minmax.max);
|
cliPrintf("Allowed range: %d - %d\r\n", var->config.minmax.min, var->config.minmax.max);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case (MODE_LOOKUP): {
|
case (MODE_LOOKUP): {
|
||||||
|
@ -2687,7 +2687,7 @@ static void cliPrintVarRange(const clivalue_t *var)
|
||||||
cliPrint(",");
|
cliPrint(",");
|
||||||
cliPrintf(" %s", tableEntry->values[i]);
|
cliPrintf(" %s", tableEntry->values[i]);
|
||||||
}
|
}
|
||||||
cliPrint("\n");
|
cliPrint("\r\n");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue