Fix ADHDS2A RX LNA switch

This commit is contained in:
pascallanger
2019-10-13 16:35:09 +02:00
parent 5ae4f0288b
commit a23178e20e
3 changed files with 8 additions and 8 deletions

View File

@@ -166,7 +166,7 @@ uint16_t initFrSky_Rx()
state = 0;
frsky_rx_chanskip = 1;
hopping_frequency_no = 0;
rx_data_started = 0;
rx_data_started = false;
frsky_rx_finetune = 0;
telemetry_link = 0;
if (IS_BIND_IN_PROGRESS) {
@@ -329,7 +329,7 @@ uint16_t FrSky_Rx_callback()
frsky_rx_build_telemetry_packet();
telemetry_link = 1;
}
rx_data_started = 1;
rx_data_started = true;
read_retry = 0;
pps_counter++;
}