diff --git a/latest/Firmware/Src/Receiver.cpp b/latest/Firmware/Src/Receiver.cpp index 2f181b2..2a30ae6 100644 --- a/latest/Firmware/Src/Receiver.cpp +++ b/latest/Firmware/Src/Receiver.cpp @@ -58,7 +58,7 @@ bool Receiver::init() //DBG("Configuring IC\r\n"); configure(); resetBitScanner(); - configureGPIOsForRX(); + //configureGPIOsForRX(); return true; } @@ -79,8 +79,8 @@ void Receiver::switchToChannel(VHFChannel channel) // TODO: This is a really, really long operation - over 320us !!! void Receiver::startListening(VHFChannel channel) { - bsp_signal_high(); - //configureGPIOsForRX(); + //bsp_signal_high(); + configureGPIOsForRX(); mChannel = channel; RX_OPTIONS options; @@ -92,7 +92,7 @@ void Receiver::startListening(VHFChannel channel) options.next_state3 = 0; sendCmd (START_RX, &options, sizeof options, NULL, 0); - bsp_signal_low(); + //bsp_signal_low(); } void Receiver::resetBitScanner()