From cf15f276f9b7b97311003d2d1dc6dcdb444feb37 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 11 Aug 2001 08:44:48 +0200 Subject: [PATCH] Changed the default value for the 'DiSEqC' setup parameter to 'off' --- HISTORY | 1 + INSTALL | 8 ++++++++ config.c | 4 ++-- i18n.c | 18 +++++++++--------- menu.c | 4 ++-- 5 files changed, 22 insertions(+), 13 deletions(-) diff --git a/HISTORY b/HISTORY index b54b4b2f..e92ae103 100644 --- a/HISTORY +++ b/HISTORY @@ -634,3 +634,4 @@ Video Disk Recorder Revision History - Changed the 'Eject DVD' button text to a simple 'Eject' (the German text was too long...). - Made the font file generation more stable (thanks to Artur Skawina). +- Changed the default value for the "DiSEqC" setup parameter to "off". diff --git a/INSTALL b/INSTALL index 911fe59f..946e06de 100644 --- a/INSTALL +++ b/INSTALL @@ -193,6 +193,14 @@ As a starting point you can copy the 'channels.conf' file that comes with the VDR archive into your video directory (or into your config directory, respectively, in case you have redirected it with the -c option). +Setting up DiSEqC: +------------------ + +If you are using a DVB-S card with a satellite equipment that needs to be +accessed using DiSEqC, you have to go to the "Setup" menu and set the "DiSEqC" +parameter to "on". Also check the "DiSEqC" parameters for the various channels +and set them to the necessary values. + Running VDR with DVB-C (cable): ------------------------------- diff --git a/config.c b/config.c index 8e0cce30..b28be724 100644 --- a/config.c +++ b/config.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.52 2001/07/27 13:45:28 kls Exp $ + * $Id: config.c 1.53 2001/08/11 08:38:11 kls Exp $ */ #include "config.h" @@ -764,7 +764,7 @@ cSetup::cSetup(void) LnbSLOF = 11700; LnbFrequLo = 9750; LnbFrequHi = 10600; - DiSEqC = 1; + DiSEqC = 0; SetSystemTime = 0; MarginStart = 2; MarginStop = 10; diff --git a/i18n.c b/i18n.c index cec0b8ce..2fd9c344 100644 --- a/i18n.c +++ b/i18n.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: i18n.c 1.29 2001/08/10 15:37:46 kls Exp $ + * $Id: i18n.c 1.30 2001/08/11 08:43:51 kls Exp $ * * Slovenian translations provided by Miha Setina * Italian translations provided by Alberto Carraro @@ -413,14 +413,14 @@ const tPhrase Phrases[] = { "Polarisation", "Polaritet", }, - { "Diseqc", - "Diseqc", - "Diseqc", - "Diseqc", - "Diseqc", - "Diseqc", - "Diseqc", - "Diseqc", + { "DiSEqC", + "DiSEqC", + "DiSEqC", + "DiSEqC", + "DiSEqC", + "DiSEqC", + "DiSEqC", + "DiSEqC", }, { "Srate", "Srate", diff --git a/menu.c b/menu.c index 2e70e59e..5384d65c 100644 --- a/menu.c +++ b/menu.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.98 2001/08/10 15:37:53 kls Exp $ + * $Id: menu.c 1.99 2001/08/11 08:43:31 kls Exp $ */ #include "menu.h" @@ -545,7 +545,7 @@ cMenuEditChannel::cMenuEditChannel(int Index) Add(new cMenuEditStrItem( tr("Name"), data.name, sizeof(data.name), FileNameChars)); Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency, 10000, 13000)); //TODO exact limits??? Add(new cMenuEditChrItem( tr("Polarization"), &data.polarization, "hv")); - Add(new cMenuEditIntItem( tr("Diseqc"), &data.diseqc, 0, 10)); //TODO exact limits??? + Add(new cMenuEditIntItem( tr("DiSEqC"), &data.diseqc, 0, 10)); //TODO exact limits??? Add(new cMenuEditIntItem( tr("Srate"), &data.srate, 22000, 30000)); //TODO exact limits - toggle??? Add(new cMenuEditIntItem( tr("Vpid"), &data.vpid, 0, 0xFFFE)); Add(new cMenuEditIntItem( tr("Apid1"), &data.apid1, 0, 0xFFFE));