Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] About C band satellite.....



1. About C band satellite, AsiaSat2.
 
 I set up my setup.conf and channels.conf files but I could only see
"channel not sync'ed" messages. Local LNB freq. of the AsiaSat2(C band)
which I want to receive is 5150Mhz.
 
 My conf files are listed below.
 
my setup.conf
------------------------------------------------------------------
# VDR Setup
OSDLanguage        = 0
PrimaryDVB         = 1
ShowInfoOnChSwitch = 1
MenuScrollPage     = 1
MarkInstantRecord  = 1
NameInstantRecord  = TITLE EPISODE
InstantRecordTime  = 180
LnbSLOF            = 5150
LnbFrequLo         = 5150
LnbFrequHi         = 0
DiSEqC             = 0
SetSystemTime      = 0
TimeTransponder    = 0
MarginStart        = 2
MarginStop         = 10
EPGScanTimeout     = 5
EPGBugfixLevel     = 2
SVDRPTimeout       = 300
SortTimers         = 1
PrimaryLimit       = 0
DefaultPriority    = 50
DefaultLifetime    = 50
UseSubtitle        = 1
RecordingDirs      = 1
VideoFormat        = 0
RecordDolbyDigital = 1
ChannelInfoPos     = 0
OSDwidth           = 52
OSDheight          = 18
OSDMessageTime     = 1
MaxVideoFileSize   = 2000
SplitEditedFiles   = 0
MinEventTimeout    = 30
MinUserInactivity  = 120
MultiSpeedMode     = 0
ShowReplayMode     = 0
CurrentChannel     = 5
CurrentVolume      = 255
--------------------------------------------------------------------
 
my channels.conf (from http://www.sciteq.com.au/freq/asiasat2.html
<http://www.sciteq.com.au/freq/asiasat2.html> )
--------------------------------------------------------------------
AL-ALAM:3660:v:0:27500:513:651:0:0:8190
Saudi CH1:3660:v:0:27500:512:650:0:0:8190
KUWAIT SP:3660:v:0:27500:2560:2561:0:0:2560
IRIB3:3660:v:0:27500:2695:2690:0:0:2695
TV MUSLIM:3660:v:0:27500:514:652:0:0:8190
Henan TV:3706:h:0:4420:160:80:0:0:160
Hubei1:3713:h:0:4420:160:80:0:0:160
Fujian1:3720:h:0:4420:160:80:0:0:160
ANHUI TV:3820:v:0:4420:255:256:0:0:255
Guangdong:3840:h:0:4420:160:80:0:0:160
DWtv:4000:h:0:28125:2305:2306:0:0:2690
NN:4000:h:0:28125:512:640:0:0:8190
RAI Inter:4000:h:0:28125:513:644:0:0:2432
TVE:4000:h:0:28125:514:648:0:0:8190
TV5-Asia:4000:h:0:28125:515:625:0:0:2560
RTPi:4000:h:0:28125:517:700:0:0:8190
---------------------------------------------------------------------
 
 I can see all channels listed above by using DVBS STB(not by DVBS PCI
card). In case of Ku band channels, my DVBS PCI card works well.
 
IMHO, I think I have to modify frequency settings in the dvbapi.c.
 
dvbapi.c
---------------------------------------------------------------------
 switch (frontendType) {
       case FE_QPSK: { // DVB-S
 
            // Frequency offsets:
 
            unsigned int freq = Frequency;
            int tone = SEC_TONE_OFF;
            
          if (freq < (unsigned int)Setup.LnbSLOF) {
              freq -= Setup.LnbFrequLo;
 
              tone = SEC_TONE_OFF;
              }
               else {
               freq -= Setup.LnbFrequHi;  
               tone = SEC_TONE_ON;
               }
 
            Frontend.Frequency = freq * 1000UL;    
            Frontend.Inversion = INVERSION_AUTO;   
            Frontend.u.qpsk.SymbolRate = Srate * 1000UL;
            Frontend.u.qpsk.FEC_inner = FEC_AUTO;
 
------------------------------------------------------------------
 
I shall expect your replys.



-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index