while still talking to myself, I noticed in the logs that :<br><br>DBox2EPG(3): EPG disabled for SAT1.<br><br>In the code I see that this is because the UseOnAirGuide flag is OFF (see below)<br>But in mythtv-setup, in the channel editor, this checkbox is disabled ?! Why is that ? Do I have to run an update query in the channels table and manually set this to on (1) ??
<br><br>thx <br><br><pre class="fragment">00113         <span class="comment">// Only grab the EPG for this channel if useonairguide is set to 1</span>
<a name="l00114"></a>00114         <span class="keywordflow">if</span> (<a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#h1">UseOnAirGuide</a>((<a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/STTypes_8h.html#a7">
uint</a>)chanid))<br><a name="l00115"></a>00115         {<br><a name="l00116"></a>00116             <a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#d1">RequestEPG</a>(<a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#r10">
m_requestedChannel</a>);<br><a name="l00117"></a>00117             <a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#r9">m_pendingRequest</a> = <span class="keyword">false</span>;<br><a name="l00118">
</a>00118         }<br><a name="l00119"></a>00119         <span class="keywordflow">else</span>
<a name="l00120"></a>00120         {<br><a name="l00121"></a>00121             <a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/firewire__tester_8c.html#a6">VERBOSE</a>(VB_EIT, <a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/audiooutputbase_8cpp.html#a0">
LOC</a> + QString(<span class="stringliteral">&quot;EPG disabled for %1.&quot;</span>)<br><a name="l00122"></a>00122                     .arg(<a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#r10">
m_requestedChannel</a>));<br><a name="l00123"></a>00123             <a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2EPG.html#r2">m_dbox2channel</a>-&gt;<a class="code" href="http://www.cuymedia.net/doxygen-dev-docs/html/classDBox2Channel.html#a12">
EPGFinished</a>();<br><a name="l00124"></a>00124         }</pre><br>