mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Changed the default value for the 'DiSEqC' setup parameter to 'off'
This commit is contained in:
parent
0387ee9ad9
commit
cf15f276f9
1
HISTORY
1
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".
|
||||
|
8
INSTALL
8
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):
|
||||
-------------------------------
|
||||
|
||||
|
4
config.c
4
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;
|
||||
|
18
i18n.c
18
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 <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
menu.c
4
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));
|
||||
|
Loading…
Reference in New Issue
Block a user