1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Renamed 'rxRuntimeConfig' to 'rxRuntimeState'. (#9072)

Renamed 'rxRuntimeConfig' to 'rxRuntimeState'.
This commit is contained in:
Michael Keller 2019-10-22 11:27:36 +13:00 committed by GitHub
commit 9e44cd3ca5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
71 changed files with 463 additions and 463 deletions

View file

@ -3314,13 +3314,13 @@ static void cliBeeper(char *cmdline)
#if defined(USE_RX_SPI) || defined (USE_SERIALRX_SRXL2)
void cliRxBind(char *cmdline){
UNUSED(cmdline);
switch (rxRuntimeConfig.rxProvider) {
switch (rxRuntimeState.rxProvider) {
default:
cliPrint("Not supported.");
break;
case RX_PROVIDER_SERIAL:
switch (rxRuntimeConfig.serialrxProvider) {
switch (rxRuntimeState.serialrxProvider) {
default:
cliPrint("Not supported.");
break;