diff options
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index 446ea48..be3ee13 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -133,19 +133,16 @@ private: // cDiseqc *lnbSource; // can not #include "diseqc.h". A workaround follows: int *lnbSource; // [DiSEqC] DiSEqC-Source int lnbNr; // Number of LNB used -// LNB Sharing-Ende + bool lnbSendSignals; // false if this device must not send signals to the LNB (like 22 kHz, ...). public: int *LnbSource(void) { return lnbSource; }; - virtual int LnbNr(void) const { if(ProvidesSource(cSource::stSat)) return lnbNr; return CardIndex() * -1;}; + virtual int LnbNr(void) const { if(ProvidesSource(cSource::stSat)) return lnbNr; return (CardIndex() + 1) * -1;}; virtual void SetLnbNrFromSetup(void); - -public: virtual bool IsLnbConflict(const cChannel *Channel); virtual bool IsShareLnb(const cDevice *Device); - // LNB Sharing Ende - + // Common Interface facilities: |