home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Development
Submit: code patches (MediaPortal/TV-Server/etc.)
TV Server hardware-specific code refactoring
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="gibman" data-source="post: 684538" data-attributes="member: 25430"><p>Im currently running SVN version of tvservice.</p><p></p><p>using the stress test tool found on setupTV I realized that I did not have a 100% stable diseqc switching.</p><p></p><p>atleast not on my hauppauge card (nova hd dvb-s2).</p><p></p><p>I randomly get a "no signal" exception.</p><p></p><p>If I do this quick and dirty hack, then all is working.</p><p>stresstest have been running 80 tunings, and no one failed yet <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite1" alt=":)" title="Smile :)" loading="lazy" data-shortname=":)" /></p><p></p><p></p><p>in method:</p><p>public override bool LockedInOnSignal()</p><p></p><p>[code]</p><p>....</p><p>if (!isLocked)</p><p> {</p><p> ts = DateTime.Now - timeStart;</p><p> Log.Log.WriteFile("dvb: LockedInOnSignal waiting 20ms");</p><p></p><p> if (System.IO.File.Exists("c:\\diseqc.txt"))</p><p> {</p><p> if (_previousChannel is DVBSChannel)</p><p> {</p><p> bool diseqCsucceded = _conditionalAccess.SendDiseqcCommand(_parameters, (DVBSChannel)_previousChannel);</p><p> }</p><p> }</p><p></p><p> System.Threading.Thread.Sleep(20);</p><p> }</p><p>[/code]</p><p></p><p>_previousChannel is actually the current channel at this time in code.</p><p>but the main thing is it seems do wonders to do an additional SendDiseqcCommand CMD for those card drivers.</p><p></p><p>why is this even a problem ?</p><p></p><p>do we call SendDiseqcCommand from the wrong place in code ?</p><p></p><p>no idea how this fares on your patch.</p><p>probably the same.</p><p></p><p>/gibman</p></blockquote><p></p>
[QUOTE="gibman, post: 684538, member: 25430"] Im currently running SVN version of tvservice. using the stress test tool found on setupTV I realized that I did not have a 100% stable diseqc switching. atleast not on my hauppauge card (nova hd dvb-s2). I randomly get a "no signal" exception. If I do this quick and dirty hack, then all is working. stresstest have been running 80 tunings, and no one failed yet :) in method: public override bool LockedInOnSignal() [code] .... if (!isLocked) { ts = DateTime.Now - timeStart; Log.Log.WriteFile("dvb: LockedInOnSignal waiting 20ms"); if (System.IO.File.Exists("c:\\diseqc.txt")) { if (_previousChannel is DVBSChannel) { bool diseqCsucceded = _conditionalAccess.SendDiseqcCommand(_parameters, (DVBSChannel)_previousChannel); } } System.Threading.Thread.Sleep(20); } [/code] _previousChannel is actually the current channel at this time in code. but the main thing is it seems do wonders to do an additional SendDiseqcCommand CMD for those card drivers. why is this even a problem ? do we call SendDiseqcCommand from the wrong place in code ? no idea how this fares on your patch. probably the same. /gibman [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Development
Submit: code patches (MediaPortal/TV-Server/etc.)
TV Server hardware-specific code refactoring
Contact us
RSS
Top
Bottom