mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-20 06:58:39 +03:00
Fix "TX BAR" and compander - hopefully
This commit is contained in:
11
app/search.c
11
app/search.c
@ -498,7 +498,8 @@ void SEARCH_Start(void)
|
||||
g_search_frequency = g_rx_vfo->p_rx->frequency;
|
||||
g_search_step_setting = g_rx_vfo->step_setting;
|
||||
|
||||
BK4819_PickRXFilterPathBasedOnFrequency(g_search_frequency);
|
||||
BK4819_set_rf_filter_path(g_search_frequency);
|
||||
|
||||
BK4819_SetScanFrequency(g_search_frequency);
|
||||
}
|
||||
else
|
||||
@ -506,7 +507,13 @@ void SEARCH_Start(void)
|
||||
g_search_css_state = SEARCH_CSS_STATE_OFF;
|
||||
g_search_frequency = 0xFFFFFFFF;
|
||||
|
||||
BK4819_PickRXFilterPathBasedOnFrequency(0xFFFFFFFF);
|
||||
#if 1
|
||||
// this is why it needs such a strong signal
|
||||
BK4819_set_rf_filter_path(0xFFFFFFFF); // disable the LNA filter paths
|
||||
#else
|
||||
BK4819_set_rf_filter_path(g_rx_vfo->p_rx->frequency); // lets have a play ;)
|
||||
#endif
|
||||
|
||||
BK4819_EnableFrequencyScan();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user