Don't stop demod when issuing DiSEqC or Tone Burst commands

This may prevent locking depending on which order are called tuning
and DiSEqC commands.

Here are comments from Ralph (Digital Devices):

The macro stops the demod, because a sudden loss of signal, like
you get when switching inputs with diseqc command, can cause the
TS output section in the stv0900 to lose packets on the other demod.
But this does not happen very often (see errrata of stv0900).
I guess it depends on in what order you use diseqc and tuning that it
could cause trouble.
This commit is contained in:
Florent Audebert 2014-05-20 12:10:29 +02:00 committed by Richard Bérichon
parent b53ad2c450
commit 3c05e73692

View File

@ -41,7 +41,7 @@
#define ERRCTRL1_DVBS1 0x76
#define ERRCTRL1_DVBS2 0x67
#define STOP_DEMOD 1
#define STOP_DEMOD 0
static unsigned int verbose;
module_param(verbose, int, 0644);