1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

use higher bandwidth if symbol rate selected > 5500000

This commit is contained in:
none 2019-12-11 09:08:25 +01:00
parent 569674e427
commit 1b9d2782ba

View File

@ -210,6 +210,8 @@ static int search_j83b(struct dvb_frontend *fe)
cmd.j83b_search.flags = 0;
cmd.j83b_search.retry = 0;
cmd.j83b_search.bandwidth = MCI_BANDWIDTH_6MHZ;
if (p->symbol_rate > 5500000)
cmd.j83b_search.bandwidth |= MCI_BANDWIDTH_EXTENSION;
cmd.j83b_search.frequency = p->frequency;
cmd.demod = state->mci.tuner;
cmd.output = state->mci.nr;