* [linux-dvb] How to solve the TT-S2-3200 tuning problems?
@ 2008-06-21 2:24 manu
2008-06-21 9:14 ` Ales Jurik
0 siblings, 1 reply; 15+ messages in thread
From: manu @ 2008-06-21 2:24 UTC (permalink / raw)
To: Linux DVB Mailing List
Hi all,
there are several threads about TT-3200 not being able to lock on
different channels depending on FEC/symbol rate/modulation.
Now what kind of experimentation could provide enough data to solve
them? For example would it be possible that some knowledgeable guy here
posts:
-datasheets/programming guide for the tuner/demod if no NDA...
-post the source of a prog that could gather data when tuning to a
given transponder.
-or anything else that this/these persons think would improve the
understanding of the problems.
HTH
Bye
Manu, who would like to watch the final of the euro cup in HD ;-)
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] How to solve the TT-S2-3200 tuning problems?
2008-06-21 2:24 [linux-dvb] How to solve the TT-S2-3200 tuning problems? manu
@ 2008-06-21 9:14 ` Ales Jurik
2008-06-28 12:44 ` [linux-dvb] Re : " manu
0 siblings, 1 reply; 15+ messages in thread
From: Ales Jurik @ 2008-06-21 9:14 UTC (permalink / raw)
To: linux-dvb; +Cc: abraham.manu
Hi,
I've tried to see where the problem is for some time. My opinions and results
of some debugging work is included.
I'm ready to cooperate in debugging of this driver.
BR,
Ales
On Saturday 21 of June 2008, manu wrote:
> Hi all,
> there are several threads about TT-3200 not being able to lock on
> different channels depending on FEC/symbol rate/modulation.
> Now what kind of experimentation could provide enough data to solve
> them? For example would it be possible that some knowledgeable guy here
> posts:
> -datasheets/programming guide for the tuner/demod if no NDA...
Yes, such documents are under NDA, I don't have access to it.
> -post the source of a prog that could gather data when tuning to a
> given transponder.
> -or anything else that this/these persons think would improve the
> understanding of the problems.
> HTH
> Bye
> Manu, who would like to watch the final of the euro cup in HD ;-)
The point from which I've checked the driver is file stb0899_priv.h (enum
stb0899_modcod). There are defined values for all possible
FEC/modulation combinations. We could see that 8PSK modulations have values
from 12 to 17 (for debugging).
But no initial values are used for 8PSK modulation for registers csm1 to csm4
as the stb0899_dvbs2_init_csm is called only for QPSK ( condition is and-ed
with INRANGE(STB0899_QPSK_23, modcod, STB0899_QPSK_910) ).
I'm not sure if this is the reason of problems, but I could get lock (very
unstable - lock is active for few minutes, than for minute or so disappeared
and so long) after few minutes staying tuned on some 8PSK channels.
Maybe if set some registers (don't know if csm1-csm4 is enough) to initial
values depending on FEC/modulation it would be possible to get lock within
seconds like it is with QPSK.
In the driver there are also some pieces of code depended to FEC/modulation,
but only STB0899_QPSK_XXX is used for such pieces of code. Not possible to
find STB0899_8PSK_XXX depending code. Isn't it necessary? Or such code is
missing and the casual lock is done by hw automation?
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* [linux-dvb] Re : How to solve the TT-S2-3200 tuning problems?
2008-06-21 9:14 ` Ales Jurik
@ 2008-06-28 12:44 ` manu
2008-06-28 15:19 ` [linux-dvb] Re : " manu
2008-06-28 18:15 ` [linux-dvb] " Daniel
0 siblings, 2 replies; 15+ messages in thread
From: manu @ 2008-06-28 12:44 UTC (permalink / raw)
To: Linux DVB Mailing List
Le 21.06.2008 05:14:46, Ales Jurik a écrit :
> Hi,
>
> I've tried to see where the problem is for some time. My opinions and
> results
> of some debugging work is included.
>
> I'm ready to cooperate in debugging of this driver.
>
> BR,
>
> Ales
>
> On Saturday 21 of June 2008, manu wrote:
> > Hi all,
> > there are several threads about TT-3200 not being able to lock on
> > different channels depending on FEC/symbol rate/modulation.
> > Now what kind of experimentation could provide enough data to solve
> > them? For example would it be possible that some knowledgeable guy
> here
> > posts:
> > -datasheets/programming guide for the tuner/demod if no NDA...
>
> Yes, such documents are under NDA, I don't have access to it.
>
> > -post the source of a prog that could gather data when tuning to a
> > given transponder.
> > -or anything else that this/these persons think would improve the
> > understanding of the problems.
> > HTH
> > Bye
> > Manu, who would like to watch the final of the euro cup in HD ;-)
>
> The point from which I've checked the driver is file stb0899_priv.h
> (enum
> stb0899_modcod). There are defined values for all possible
> FEC/modulation combinations. We could see that 8PSK modulations have
> values
> from 12 to 17 (for debugging).
>
> But no initial values are used for 8PSK modulation for registers csm1
> to csm4
> as the stb0899_dvbs2_init_csm is called only for QPSK ( condition is
> and-ed
> with INRANGE(STB0899_QPSK_23, modcod, STB0899_QPSK_910) ).
>
> I'm not sure if this is the reason of problems, but I could get lock
> (very
> unstable - lock is active for few minutes, than for minute or so
> disappeared
> and so long) after few minutes staying tuned on some 8PSK channels.
>
> Maybe if set some registers (don't know if csm1-csm4 is enough) to
> initial
> values depending on FEC/modulation it would be possible to get lock
> within
> seconds like it is with QPSK.
>
> In the driver there are also some pieces of code depended to
> FEC/modulation,
> but only STB0899_QPSK_XXX is used for such pieces of code. Not
> possible to
> find STB0899_8PSK_XXX depending code. Isn't it necessary? Or such
> code
> is
> missing and the casual lock is done by hw automation?
One more datapoint: I have one transponder which has only HD Channels
on it; the only difference with the other transponders (which are
working great using TT 3200) is the FEC (and the fact that it is MPEG4,
but that changes nothing for getting the lock); symbol rate and
modulation are the same. But it does not lock. Here is the dmesg of a
simpledvbtune session: one with a success on another transponder, and
then a failure on this transponder.
I'd like to know where to put some printks or tweak the code to be able
to debug this, if someone with the know-how could explain a bit. I can
definitely do some coding, but without data it is kind of hard.
HTH
Bye
Manu
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-28 12:44 ` [linux-dvb] Re : " manu
@ 2008-06-28 15:19 ` manu
2008-06-28 20:23 ` Ales Jurik
2008-06-28 18:15 ` [linux-dvb] " Daniel
1 sibling, 1 reply; 15+ messages in thread
From: manu @ 2008-06-28 15:19 UTC (permalink / raw)
To: linux-dvb
Le 28.06.2008 08:44:12, manu a écrit :
> Le 21.06.2008 05:14:46, Ales Jurik a écrit :
> > Hi,
> >
> > I've tried to see where the problem is for some time. My opinions
> and
> > results
> > of some debugging work is included.
> >
> > I'm ready to cooperate in debugging of this driver.
> >
> > BR,
> >
> > Ales
> >
> > On Saturday 21 of June 2008, manu wrote:
> > > Hi all,
> > > there are several threads about TT-3200 not being able to lock on
> > > different channels depending on FEC/symbol rate/modulation.
> > > Now what kind of experimentation could provide enough data to
> solve
> > > them? For example would it be possible that some knowledgeable
> guy
> > here
> > > posts:
> > > -datasheets/programming guide for the tuner/demod if no NDA...
> >
> > Yes, such documents are under NDA, I don't have access to it.
> >
> > > -post the source of a prog that could gather data when tuning to
> a
> > > given transponder.
> > > -or anything else that this/these persons think would improve the
> > > understanding of the problems.
> > > HTH
> > > Bye
> > > Manu, who would like to watch the final of the euro cup in HD ;-)
> >
> > The point from which I've checked the driver is file stb0899_priv.h
> > (enum
> > stb0899_modcod). There are defined values for all possible
> > FEC/modulation combinations. We could see that 8PSK modulations
> have
> > values
> > from 12 to 17 (for debugging).
> >
> > But no initial values are used for 8PSK modulation for registers
> csm1
> > to csm4
> > as the stb0899_dvbs2_init_csm is called only for QPSK ( condition
> is
> > and-ed
> > with INRANGE(STB0899_QPSK_23, modcod, STB0899_QPSK_910) ).
> >
> > I'm not sure if this is the reason of problems, but I could get
> lock
> > (very
> > unstable - lock is active for few minutes, than for minute or so
> > disappeared
> > and so long) after few minutes staying tuned on some 8PSK channels.
> >
> > Maybe if set some registers (don't know if csm1-csm4 is enough) to
> > initial
> > values depending on FEC/modulation it would be possible to get lock
> > within
> > seconds like it is with QPSK.
> >
> > In the driver there are also some pieces of code depended to
> > FEC/modulation,
> > but only STB0899_QPSK_XXX is used for such pieces of code. Not
> > possible to
> > find STB0899_8PSK_XXX depending code. Isn't it necessary? Or such
> > code
> > is
> > missing and the casual lock is done by hw automation?
>
> One more datapoint: I have one transponder which has only HD Channels
> on it; the only difference with the other transponders (which are
> working great using TT 3200) is the FEC (and the fact that it is
> MPEG4,
> but that changes nothing for getting the lock); symbol rate and
> modulation are the same. But it does not lock. Here is the dmesg of a
> simpledvbtune session: one with a success on another transponder, and
> then a failure on this transponder.
> I'd like to know where to put some printks or tweak the code to be
> able
> to debug this, if someone with the know-how could explain a bit. I
> can
>
> definitely do some coding, but without data it is kind of hard.
> HTH
> Bye
just to precise a bit more: all transponders are DVB-S with QPSK
modulation (at least this is what is advertised in the dvb tables).
BYe
Manu
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : How to solve the TT-S2-3200 tuning problems?
2008-06-28 12:44 ` [linux-dvb] Re : " manu
2008-06-28 15:19 ` [linux-dvb] Re : " manu
@ 2008-06-28 18:15 ` Daniel
2008-06-29 1:05 ` [linux-dvb] Re : " manu
1 sibling, 1 reply; 15+ messages in thread
From: Daniel @ 2008-06-28 18:15 UTC (permalink / raw)
To: linux-dvb
manu <eallaud <at> yahoo.fr> writes:
>
> One more datapoint: I have one transponder which has only HD Channels
> on it; the only difference with the other transponders (which are
> working great using TT 3200) is the FEC (and the fact that it is MPEG4,
> but that changes nothing for getting the lock); symbol rate and
> modulation are the same. But it does not lock. Here is the dmesg of a
> simpledvbtune session: one with a success on another transponder, and
> then a failure on this transponder.
> I'd like to know where to put some printks or tweak the code to be able
> to debug this, if someone with the know-how could explain a bit. I can
> definitely do some coding, but without data it is kind of hard.
> HTH
> Bye
> Manu
>
What FEC is it on the transponder you can't lock?
I have one transponder witch is DVB-S with QPSK mod, FEC 7/8 and SR 28000 that
has one mpeg4 channel (Eurosport HD) and I get lock on that one all the time,
could it be becuse there are regular channels on that transponder too?
//Daniel
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-28 15:19 ` [linux-dvb] Re : " manu
@ 2008-06-28 20:23 ` Ales Jurik
2008-06-29 1:24 ` [linux-dvb] Re : " manu
0 siblings, 1 reply; 15+ messages in thread
From: Ales Jurik @ 2008-06-28 20:23 UTC (permalink / raw)
To: linux-dvb
On Saturday 28 of June 2008, manu wrote:
> Le 28.06.2008 08:44:12, manu a écrit :
>
> just to precise a bit more: all transponders are DVB-S with QPSK
> modulation (at least this is what is advertised in the dvb tables).
> BYe
> Manu
>
Hi,
this is interesting - I don't have problem with DVB-S/QPSK channels except for
some channels I'm not able to tune directly when changing sat (on diseqc
switch) - it is necessary to tune first to another transponder and then to
this problematic one.
Could you be so kind and specify more channels you have problems with?
BR,
Ales
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-28 18:15 ` [linux-dvb] " Daniel
@ 2008-06-29 1:05 ` manu
2008-06-29 7:56 ` Daniel
0 siblings, 1 reply; 15+ messages in thread
From: manu @ 2008-06-29 1:05 UTC (permalink / raw)
To: linux-dvb
Le 28.06.2008 14:15:37, Daniel a écrit :
> manu <eallaud <at> yahoo.fr> writes:
>
> >
> > One more datapoint: I have one transponder which has only HD
> Channels
> > on it; the only difference with the other transponders (which are
> > working great using TT 3200) is the FEC (and the fact that it is
> MPEG4,
> > but that changes nothing for getting the lock); symbol rate and
> > modulation are the same. But it does not lock. Here is the dmesg of
> a
> > simpledvbtune session: one with a success on another transponder,
> and
> > then a failure on this transponder.
> > I'd like to know where to put some printks or tweak the code to be
> able
> > to debug this, if someone with the know-how could explain a bit. I
> can
> > definitely do some coding, but without data it is kind of hard.
> > HTH
> > Bye
> > Manu
> >
>
>
> What FEC is it on the transponder you can't lock?
> I have one transponder witch is DVB-S with QPSK mod, FEC 7/8 and SR
> 28000 that
> has one mpeg4 channel (Eurosport HD) and I get lock on that one all
> the time,
> could it be becuse there are regular channels on that transponder
> too?
AFAIK there are only HD channels on this transponder. FEC is 5/6
instead of the more common 3/4 for all other transponders. And that's
the only difference. I do not understand why this could be a problem
for tuning to the transponder.
And I tried to tune to frequencies between 11485 and 11505 MHz, whereas
the freq is advertised as 11495MHz. With no luck: not a single lock.
For the other transponders lock is fast and reliabke.
One more thing, the symbol rate is the same across all transponders,
30MBauds.
Do you have an idea about solving this, or at least how to get useful
info.
Bye
Manu
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* [linux-dvb] Re : Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-28 20:23 ` Ales Jurik
@ 2008-06-29 1:24 ` manu
0 siblings, 0 replies; 15+ messages in thread
From: manu @ 2008-06-29 1:24 UTC (permalink / raw)
To: linux-dvb
Le 28.06.2008 16:23:39, Ales Jurik a écrit :
> On Saturday 28 of June 2008, manu wrote:
> > Le 28.06.2008 08:44:12, manu a écrit :
> >
> > just to precise a bit more: all transponders are DVB-S with QPSK
> > modulation (at least this is what is advertised in the dvb tables).
> > BYe
> > Manu
> >
> Hi,
>
> this is interesting - I don't have problem with DVB-S/QPSK channels
> except for
> some channels I'm not able to tune directly when changing sat (on
> diseqc
> switch) - it is necessary to tune first to another transponder and
> then to
> this problematic one.
>
> Could you be so kind and specify more channels you have problems
> with?
Thats the thing: every other transponder works great, that is: 11093,
11555, 11635, 11675 MHz, 30MBauds, DVB-S, QPSK, FEC 3/4.
The only problematic one: 11495MHz, FEC 5/6 and every other
characteristics are the same as the working ones. I checked in the dvb
tables from the transport stream.
Have you got any idea?
Thanks
Manu
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-29 1:05 ` [linux-dvb] Re : " manu
@ 2008-06-29 7:56 ` Daniel
2008-07-01 9:21 ` Daniel
0 siblings, 1 reply; 15+ messages in thread
From: Daniel @ 2008-06-29 7:56 UTC (permalink / raw)
To: linux-dvb
manu <eallaud <at> yahoo.fr> writes:
>
> AFAIK there are only HD channels on this transponder. FEC is 5/6
> instead of the more common 3/4 for all other transponders. And that's
> the only difference. I do not understand why this could be a problem
> for tuning to the transponder.
> And I tried to tune to frequencies between 11485 and 11505 MHz, whereas
> the freq is advertised as 11495MHz. With no luck: not a single lock.
> For the other transponders lock is fast and reliabke.
> One more thing, the symbol rate is the same across all transponders,
> 30MBauds.
> Do you have an idea about solving this, or at least how to get useful
> info.
> Bye
> Manu
>
Sad enough I have no clue how to solve this. I have this problem too with with a
couple of transponders that just holds mpeg4 channels. But they are DVB-S2 with
8PSK mod, FEC 3/4 and symbolrate 25000 and 30000.
12128, 12015, 11434 and 11421 on Thor 5 1.0W are the ones that are problematic
for me.
//Daniel
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-06-29 7:56 ` Daniel
@ 2008-07-01 9:21 ` Daniel
2008-07-09 21:54 ` Mika Laitio
0 siblings, 1 reply; 15+ messages in thread
From: Daniel @ 2008-07-01 9:21 UTC (permalink / raw)
To: linux-dvb
http://www.gossamer-threads.com/lists/engine?do=post_view_flat;post=336053;
page=2;sb=post_latest_reply;so=ASC;mh=25;list=mythtv
In this thread there is a small patch posted. I am not into coding so it
dosen't say to much to me. But for those of you who are into coding might
get some ideas. Maybe could it be a step in the right direction to solve
our problems maybe?
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-07-01 9:21 ` Daniel
@ 2008-07-09 21:54 ` Mika Laitio
2008-07-10 6:34 ` Ales Jurik
2008-07-10 8:18 ` Goga777
0 siblings, 2 replies; 15+ messages in thread
From: Mika Laitio @ 2008-07-09 21:54 UTC (permalink / raw)
To: Daniel; +Cc: linux-dvb
> http://www.gossamer-threads.com/lists/engine?do=post_view_flat;post=336053;
> page=2;sb=post_latest_reply;so=ASC;mh=25;list=mythtv
>
> In this thread there is a small patch posted. I am not into coding so it
> dosen't say to much to me. But for those of you who are into coding might
> get some ideas. Maybe could it be a step in the right direction to solve
> our problems maybe?
Has with tuning problems with TT-S2-3200 tried the patch suggested in
the link?
Mika
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
@ 2008-07-10 2:13 Mike Booth
0 siblings, 0 replies; 15+ messages in thread
From: Mike Booth @ 2008-07-10 2:13 UTC (permalink / raw)
To: linux-dvb
>
> In this thread there is a small patch posted. I am not into coding so it
> dosen't say to much to me. But for those of you who are into coding might
> get some ideas. Maybe could it be a step in the right direction to solve
> our problems maybe?
Has with tuning problems with TT-S2-3200 tried the patch suggested in
the link?
Mika
Can't access the site.....can you?
well can access the sit but not the patch
Mike
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-07-09 21:54 ` Mika Laitio
@ 2008-07-10 6:34 ` Ales Jurik
2008-07-10 8:18 ` Goga777
1 sibling, 0 replies; 15+ messages in thread
From: Ales Jurik @ 2008-07-10 6:34 UTC (permalink / raw)
To: linux-dvb
On Wednesday 09 of July 2008, Mika Laitio wrote:
> > http://www.gossamer-threads.com/lists/engine?do=post_view_flat;post=33605
> >3; page=2;sb=post_latest_reply;so=ASC;mh=25;list=mythtv
> >
> > In this thread there is a small patch posted. I am not into coding so it
> > dosen't say to much to me. But for those of you who are into coding might
> > get some ideas. Maybe could it be a step in the right direction to solve
> > our problems maybe?
>
> Has with tuning problems with TT-S2-3200 tried the patch suggested in
> the link?
>
> Mika
Yes, but without big success - the patch is not applicable to my version of
multiproto (last from hg) - structure stb0899_internal doesn't have member
sub_range.
But BTW the patch is for dvb-s (QPSK) part of tuning procedure, but (for
example) my problems are with dvb-s2 and 8PSK.
Ales
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-07-09 21:54 ` Mika Laitio
2008-07-10 6:34 ` Ales Jurik
@ 2008-07-10 8:18 ` Goga777
2008-07-10 9:15 ` Ales Jurik
1 sibling, 1 reply; 15+ messages in thread
From: Goga777 @ 2008-07-10 8:18 UTC (permalink / raw)
To: linux-dvb
try please updated multiproto with some fixes
http://jusst.de/hg/multiproto/summary
> > http://www.gossamer-threads.com/lists/engine?do=post_view_flat;post=336053;
> > page=2;sb=post_latest_reply;so=ASC;mh=25;list=mythtv
> >
> > In this thread there is a small patch posted. I am not into coding so it
> > dosen't say to much to me. But for those of you who are into coding might
> > get some ideas. Maybe could it be a step in the right direction to solve
> > our problems maybe?
>
> Has with tuning problems with TT-S2-3200 tried the patch suggested in
> the link?
>
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [linux-dvb] Re : Re : How to solve the TT-S2-3200 tuning problems?
2008-07-10 8:18 ` Goga777
@ 2008-07-10 9:15 ` Ales Jurik
0 siblings, 0 replies; 15+ messages in thread
From: Ales Jurik @ 2008-07-10 9:15 UTC (permalink / raw)
To: linux-dvb
On Thursday 10 of July 2008, Goga777 wrote:
> try please updated multiproto with some fixes
> http://jusst.de/hg/multiproto/summary
Hi,
thanks for your hint.
I've just tried. My opinion:
- little more slowly when switching
- still no lock possible at some transponders when changing satellite
- still no lock possible at some DVB-S2 8PSK channels (or after few minutes
and only for few seconds)
BR,
Ales
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2008-07-10 9:20 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-21 2:24 [linux-dvb] How to solve the TT-S2-3200 tuning problems? manu
2008-06-21 9:14 ` Ales Jurik
2008-06-28 12:44 ` [linux-dvb] Re : " manu
2008-06-28 15:19 ` [linux-dvb] Re : " manu
2008-06-28 20:23 ` Ales Jurik
2008-06-29 1:24 ` [linux-dvb] Re : " manu
2008-06-28 18:15 ` [linux-dvb] " Daniel
2008-06-29 1:05 ` [linux-dvb] Re : " manu
2008-06-29 7:56 ` Daniel
2008-07-01 9:21 ` Daniel
2008-07-09 21:54 ` Mika Laitio
2008-07-10 6:34 ` Ales Jurik
2008-07-10 8:18 ` Goga777
2008-07-10 9:15 ` Ales Jurik
-- strict thread matches above, loose matches on Subject: below --
2008-07-10 2:13 Mike Booth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox