<br><br><div><span class="gmail_quote">On 18/05/06, <b class="gmail_sendername">Niels Dybdahl</b> <<a href="mailto:Niels@dybdahl.dk">Niels@dybdahl.dk</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><span class="q">On 5/18/06, <b class="gmail_sendername">RoboJ1M</b> <<a href="mailto:jim.neave@googlemail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">jim.neave@googlemail.com</a>> wrote:
</span></div><div><div></div><div><span class="q"><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>Hello All,<br><br>I'm still struggling with getting my DVB-T card tuned in here in the UK.<br><br>I'm running the latest 0.19_fixes build and I've tried all the different methods, here are some of my results:<br><br>
AutoScan - Finds nothing
<br>Tuned scan - Find a couple of channels, different ones<br>Scan Transports - Finds nothing ("no tables" error)<br>Import channels.conf - Works, but EIT doesn't without some SQL hacking.<br>(This would work fine, but not even dvb-utils' "scan" finds every channel.
</div></blockquote></span></div><div><div><br>I also have problems with tuned scans. If I enter the frequency of one of the swedish transports, it does not find anything. If I enter both the frequency and the bandwidth it does find it.
<br>
But if I enter the frequency and the bandwidth of the danish (I am in Denmark) transport, it does not find anything. It does not even show "not locked" and it does not complete either.</div></div></div></blockquote>
<div><br>You probably do need to set the bandwidth. </div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div><div>I have the best experience with the country scan, but unfortunately there is no configuration for Denmark yet. Does anybody know where these country configurations are stored ?
<br><br>Niels Dybdahl<br></div></div><br>
</div><br></blockquote></div>You need to add Denmark to ScanCountry in scanwizardhelpers.* and also define the offset table in frequencytables.cpp. If I remember correctly you can define multiple ranges which should allow you to cope with quite complex systems.
e.g:<br><br> // Australia<br> fmap["dvbt_ofdm_au0"] = new DVBFrequencyTable(<br> 177500000, 226500000, 7000000, "", 0, INVERSION_OFF,<br> BANDWIDTH_7_MHZ, FEC_AUTO, FEC_AUTO, QAM_64, TRANSMISSION_MODE_8K,
<br> GUARD_INTERVAL_AUTO, HIERARCHY_NONE, QAM_AUTO, 125000, 0); // VHF 6-12<br> fmap["dvbt_ofdm_au1"] = new DVBFrequencyTable(<br> 529500000, 816500000, 7000000, "", 0, INVERSION_OFF,<br>
BANDWIDTH_7_MHZ, FEC_AUTO, FEC_AUTO, QAM_64, TRANSMISSION_MODE_8K,<br> GUARD_INTERVAL_AUTO, HIERARCHY_NONE, QAM_AUTO, 125000, 0); // UHF 28-69<br><br>defines two ranges for Australia, <br> uint _frequencyStart, //start
<br> uint _frequencyEnd, //end<br> uint _frequencyStep, //step<br> QString _name_format, //not used
<br> int _name_offset, //nor this<br> fe_spectral_inversion_t _inversion, <br> fe_bandwidth_t _bandwidth,
<br> fe_code_rate_t _coderate_hp,<br> fe_code_rate_t _coderate_lp,<br> fe_modulation_t _constellation,<br> fe_transmit_mode_t _trans_mode,
<br> fe_guard_interval_t _guard_interval,<br> fe_hierarchy_t _hierarchy,<br> fe_modulation_t _modulation,<br> int _offset1, //offsets from the centre
<br> int _offset2 //frequency, can be zero<br><br>Try and make the paramters as specific as possible, i.e instead of inversion_auto use inversion_off if all the mplexs have it defined as off.
<br clear="all"><br>Regards<br>-- <br>John