diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 08:44:48 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 08:44:48 +0200 |
commit | cf15f276f9b7b97311003d2d1dc6dcdb444feb37 (patch) | |
tree | fb154be8a3c68cb6f25de021a98b7fdf742ffa58 | |
parent | 0387ee9ad9a557ed3bc81ec07bbb090fc1d48be3 (diff) | |
download | vdr-cf15f276f9b7b97311003d2d1dc6dcdb444feb37.tar.gz vdr-cf15f276f9b7b97311003d2d1dc6dcdb444feb37.tar.bz2 |
Changed the default value for the 'DiSEqC' setup parameter to 'off'
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | INSTALL | 8 | ||||
-rw-r--r-- | config.c | 4 | ||||
-rw-r--r-- | i18n.c | 18 | ||||
-rw-r--r-- | menu.c | 4 |
5 files changed, 22 insertions, 13 deletions
@@ -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". @@ -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): ------------------------------- @@ -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; @@ -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 <mihasetina@softhome.net> * Italian translations provided by Alberto Carraro <bertocar@tin.it> @@ -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", @@ -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)); |