diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-14 14:47:46 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-14 14:47:46 +0100 |
commit | faea9fed916712f0bc1bae0ba405d4d99ac4f401 (patch) | |
tree | 30183ddd8c539ebcc202bee087d7c550be971dc4 /dvbdevice.c | |
parent | 3901e9e3e3936f979e9f2b5a6889b7be24fdcf54 (diff) | |
download | vdr-faea9fed916712f0bc1bae0ba405d4d99ac4f401.tar.gz vdr-faea9fed916712f0bc1bae0ba405d4d99ac4f401.tar.bz2 |
Now explicitly turning on the LNB power at startup1.3.6
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 8ed62e1f..6e1d7f95 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.82 2004/02/24 10:12:13 kls Exp $ + * $Id: dvbdevice.c 1.83 2004/03/14 14:47:46 kls Exp $ */ #include "dvbdevice.h" @@ -101,6 +101,7 @@ cDvbTuner::cDvbTuner(int Fd_Frontend, int CardIndex, fe_type_t FrontendType, cCi useCa = false; tunerStatus = tsIdle; startTime = time(NULL); + CHECK(ioctl(fd_frontend, FE_SET_VOLTAGE, SEC_VOLTAGE_13)); // must explicitly turn on LNB power SetDescription("tuner on device %d", cardIndex + 1); Start(); } |