aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ScanSetup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py
index cd9a8f94..2755e317 100644
--- a/lib/python/Screens/ScanSetup.py
+++ b/lib/python/Screens/ScanSetup.py
@@ -36,11 +36,9 @@ def getInitialCableTransponderList(tlist, cable):
parm = eDVBFrontendParametersCable()
parm.frequency = x[1]
parm.symbol_rate = x[2]
- parm.modulation = 2 # x[3] # eDVBFrontendParametersSatellite.Polarisation.Verti
- parm.fec = 6# x[4] # eDVBFrontendParametersSatellite.FEC.f3_4;
- #parm.fec = 6 # AUTO
+ parm.modulation = 5 # AUTO
+ parm.fec_inner = 6 # AUTO
parm.inversion = 2 # AUTO
- #parm.inversion = 2 #AUTO
tlist.append(parm)
class ScanSetup(Screen):