Mailing List archive

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

[linux-dvb] Re: UK Nova-t Tuning



On Tue, Mar 18, 2003 at 02:30:41PM +0000, Timothy Coggins wrote:
> I've been banging my head against a wall all morning trying to get my
> Nova-t Card working in Linux.
> 
> The modules have been compiled and load without any problems. I'm having
> problems tuning with dvbtune. The frequencies that appear to work are:
> 
> 578000000, 850000000, 713833333, 721833333, 690000000 and 538000000.
> 
> These were calculated from the channels on the itc webpage * 8 + 306 and
> a bit of trial and error adding and taking away 166666. When I add these
> to scan_uk-t.sh the output I get is:
> 
> <?xml version="1.0"?>
> <satellite>
> <transponder type="T" freq="578000000">
> </transponder>
> <transponder type="T" freq="850000000">
> </transponder>
> <transponder type="T" freq="713833333">
> </transponder>
> <transponder type="T" freq="721833333">
> </transponder>
> <transponder type="T" freq="690000000">
> </transponder>
> <transponder type="T" freq="538000000">
> </transponder>
> </satellite>
> 
> I am guessing there should be channel information between the
> transponder tags for xml2vdr?

You need the CVS dvbtune I think (and therefore modules which
implement the new dvb api) in order to set the correct error
correction flags for each multiplex. This is the script I use to scan
the Oxford transmitter (my local one):

#!/bin/sh
# Scan the UK DVB-T broadcasts from the Oxford transmitter
#
# USAGE: ./scan_ok-t.sh > channels.xml
#        ../xml2vdr channels.xml > channels.conf
#
# See http://www.linuxstb.org/dvb-t/ for instructions on how to find
# the frequencies for your local transmitter.
#
# If you are a DVB-T user outside the UK, you will need to amend tune.c
# with the detailed tuning parameters for your country.

# NOTE: CHANGE CARD TO SUIT YOUR SYSTEM - FIRST CARD IS "0", SECOND IS "1" etc

DVBTUNE=../dvbtune

echo '<?xml version="1.0"?>'
echo '<satellite>'
$DVBTUNE -f 538000000 -cr 3_4 -qam 16 -i
$DVBTUNE -f 578000000 -cr 3_4 -qam 16 -i
$DVBTUNE -f 690000000 -cr 3_4 -qam 16 -i
$DVBTUNE -f 713833333 -i
$DVBTUNE -f 721833333 -cr 3_4 -qam 16 -i
$DVBTUNE -f 850000000 -i
echo '</satellite>'


-- 
http://www.kantaka.co.uk/ .oOo. public key: http://www.kantaka.co.uk/gpg.txt



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



Home | Main Index | Thread Index