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

Ibus added to cli // refreshrate added

This commit is contained in:
borisbstyle 2016-01-13 23:56:10 +01:00
parent 016dac3bca
commit 927099a105
2 changed files with 3 additions and 1 deletions

View file

@ -351,7 +351,8 @@ static const char * const lookupTableSerialRX[] = {
"SUMD",
"SUMH",
"XB-B",
"XB-B-RJ01"
"XB-B-RJ01",
"IBUS"
};
static const char * const lookupTableGyroLpf[] = {

View file

@ -237,6 +237,7 @@ void serialRxInit(rxConfig_t *rxConfig)
enabled = xBusInit(rxConfig, &rxRuntimeConfig, &rcReadRawFunc);
break;
case SERIALRX_IBUS:
rxRefreshRate = 20000; // TODO - Verify speed
enabled = ibusInit(rxConfig, &rxRuntimeConfig, &rcReadRawFunc);
break;
}