From d48579c7067e123c65bd3e82799831285b088cc4 Mon Sep 17 00:00:00 2001 From: Anders Hoglund Date: Thu, 2 Mar 2017 21:58:05 +0100 Subject: [PATCH] Fix Spektrum satellites stuck in bind mode. --- src/main/fc/fc_init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/fc/fc_init.c b/src/main/fc/fc_init.c index 797beabf3..6c826ff5c 100644 --- a/src/main/fc/fc_init.c +++ b/src/main/fc/fc_init.c @@ -238,6 +238,7 @@ void init(void) } #endif + #ifdef SPEKTRUM_BIND if (feature(FEATURE_RX_SERIAL)) { switch (rxConfig()->serialrx_provider) { @@ -250,6 +251,7 @@ void init(void) break; } } + delay(200); // Make sure the satellite times out and closes the bind window. (Delay(100) below is not enough and needed for non-sat configs) #endif delay(100);