File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ uint32_t g_aircopy_freq = 41002500;
27
27
const freq_band_table_t AIR_BAND = {10800000 , 13600000 };
28
28
29
29
// the BK4819 has 2 bands it covers, 18MHz ~ 630MHz and 760MHz ~ 1300MHz
30
- const freq_band_table_t BX4819_BAND1 = { 1500000 , 63000000 };
31
- const freq_band_table_t BX4819_BAND2 = {76000000 , 189950000 };
30
+ const freq_band_table_t BX4819_BAND1 = { 1400000 , 66500000 };
31
+ const freq_band_table_t BX4819_BAND2 = {74500000 , 189950000 };
32
32
33
33
const freq_band_table_t FREQ_BAND_TABLE [7 ] =
34
34
{
@@ -213,7 +213,7 @@ int FREQUENCY_tx_freq_check(const uint32_t Frequency)
213
213
return 0 ; // TX allowed in the airband
214
214
215
215
if (Frequency < FREQ_BAND_TABLE [0 ].lower || Frequency > FREQ_BAND_TABLE [ARRAY_SIZE (FREQ_BAND_TABLE ) - 1 ].upper )
216
- return -1 ; // TX not allowed outside this range
216
+ return 0 ; // -1; TX not allowed outside this range
217
217
218
218
switch (g_eeprom .config .setting .freq_lock )
219
219
{
You can’t perform that action at this time.
0 commit comments