From 374f9509ef8ddf31b65f6fb2bcc3f7dadc6c834f Mon Sep 17 00:00:00 2001 From: Daniel Scheller Date: Sun, 27 Aug 2017 18:34:44 +0200 Subject: [PATCH] stv0910: Support a minimum symbol rate of 100KSyms/s The logic in Start() supports and handles such low symbol rates and this has even been tested working in a card review carrying this demod IC (see [1]), so announce this accordingly in the frontend_ops. [1] http://rfsync.blogspot.de/2016/04/tbs6903-review-best-dvb-s2-tuner-for.html --- frontends/stv0910.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/stv0910.c b/frontends/stv0910.c index f3c7796..7e9fa26 100644 --- a/frontends/stv0910.c +++ b/frontends/stv0910.c @@ -1776,7 +1776,7 @@ static struct dvb_frontend_ops stv0910_ops = { .frequency_max = 2150000, .frequency_stepsize = 0, .frequency_tolerance = 0, - .symbol_rate_min = 1000000, + .symbol_rate_min = 100000, .symbol_rate_max = 70000000, .caps = FE_CAN_INVERSION_AUTO | FE_CAN_FEC_AUTO |