public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [linux-dvb] Re :  TT S2-3200 driver
  2008-07-17 10:20 ` Remy Bohmer
@ 2008-07-17 11:54   ` manu
  2008-07-17 15:45     ` Daniel Hellström
  0 siblings, 1 reply; 13+ messages in thread
From: manu @ 2008-07-17 11:54 UTC (permalink / raw)
  To: linux-dvb

[-- Attachment #1: Type: text/plain, Size: 996 bytes --]

Le 17.07.2008 06:20:36, Remy Bohmer a écrit :
> Hello Ales and Marc,
> 
> > please try attached patch. With this patch I'm able to get lock on
> channels
> 
> Okay, I want to test it too, but I have some troubles getting the
> multiproto drivers up and running.
> The S2-3200 is detected properly in my system, but I have no working
> szap2, or scan, or dvbstream tools.
> 
> The two of you seem to have it working, so maybe you can give me some
> hints:
> What sources (what version) do I need?
> Is there a clear manual available somewhere that describes how to use
> the multiproto drivers?
> What version of szap2 (and scan) should I use? and where can I find
> it?
> Does dvbstream still work? Or can I use Mythtv directly?

If you want to use myth you can try the attached patch (against trunk).
Make sure that the includes in /usr/include/linux/dvb/ are the one from 
your multiproto tree (check for a DVBFE_SET_DELSYS define in the 
frontend.h source).
Bye
Manu

[-- Attachment #2: mythtv-trunk-multiproto.patch --]
[-- Type: text/x-patch, Size: 5656 bytes --]

--- trunk/mythtv/libs/libmythtv/dvbchannel.cpp	2008-07-10 22:02:57.000000000 -0400
+++ trunk-work/mythtv/libs/libmythtv/dvbchannel.cpp	2008-07-11 18:33:33.000000000 -0400
@@ -211,8 +211,16 @@
     }
     VERBOSE(VB_IMPORTANT, LOC + "Getting additional DVBFE_GET_INFO information." + ENO);
     dvbfe_info fe_info;
+    enum dvbfe_delsys delsys = DVBFE_DELSYS_DVBS;
     bzero(&fe_info, sizeof(fe_info));
-    fe_info.delivery = DVBFE_DELSYS_DVBS;
+    if (ioctl(fd_frontend, DVBFE_SET_DELSYS, &delsys)<0)
+    {
+        VERBOSE(VB_IMPORTANT, LOC_ERR + "Failed to set delivery system." + ENO);
+        close(fd_frontend);
+        fd_frontend = -1;
+    }
+        
+    //fe_info.delivery = DVBFE_DELSYS_DVBS;
     if (ioctl(fd_frontend, DVBFE_GET_INFO, &fe_info) < 0)
     {
         VERBOSE(VB_IMPORTANT, LOC_ERR +
@@ -773,42 +781,49 @@
 	// check for multiproto API
 	if ((DVB_API_VERSION == 3) && (DVB_API_VERSION_MINOR == 3)) {
 		struct dvbfe_params fe_params;
-		unsigned int delsys = DVBFE_DELSYS_DVBS; //TODO: should come from configuration/database
+		enum dvbfe_delsys delsys = DVBFE_DELSYS_DVBS; //TODO: should come from configuration/database
 
 		VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
                         QString("API minor version=%1, delivery system = %2").arg(DVB_API_VERSION_MINOR).arg(delsys));
 
 		fe_params.frequency = params.frequency;
-		fe_params.inversion = DVBFE_INVERSION_AUTO;
+		fe_params.inversion = INVERSION_AUTO;
 		
 		switch (delsys) 
 		{
-		case DVBFE_DELSYS_DVBS:
-			fe_params.delsys.dvbs.symbol_rate = params.u.qpsk.symbol_rate;
-			fe_params.delsys.dvbs.fec = DVBFE_FEC_AUTO;
-			fe_params.delsys.dvbs.modulation = DVBFE_MOD_AUTO;
-            		fe_params.delivery= DVBFE_DELSYS_DVBS;
-			VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
-                        	QString("Frequency = %2, Srate = %3 (DVB-S)")..arg(fe_params.frequency).arg(fe_params.delsys.dvbs.symbol_rate));
-			break;
-		case DVBFE_DELSYS_DVBS2:
-			fe_params.delsys.dvbs2.symbol_rate = params.u.qpsk.symbol_rate; //TODO: should use the new symbol_rate type
-			fe_params.delsys.dvbs2.fec = DVBFE_FEC_AUTO; //TODO: should use the new FEC options
-			fe_params.delsys.dvbs.modulation = DVBFE_MOD_AUTO;
-            		fe_params.delivery= DVBFE_DELSYS_DVBS2;
-			VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
-                        	QString("Frequency = %2, Srate = %3 (DVB-S2)").arg(fe_params.frequency).arg(fe_params.delsys.dvbs2.symbol_rate));
-			break;
-		default:
-			return false;
+                                            case DVBFE_DELSYS_DVBS:
+                                                fe_params.delsys.dvbs.symbol_rate = params.u.qpsk.symbol_rate;
+                                                fe_params.delsys.dvbs.fec = DVBFE_FEC_AUTO;
+                                                fe_params.delsys.dvbs.modulation = DVBFE_MOD_AUTO;
+                                                //fe_params.delivery= DVBFE_DELSYS_DVBS;
+                                                VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
+                                                        QString("Frequency = %2, Srate = %3 (DVB-S)")
+                                                        .arg(fe_params.frequency).arg(fe_params.delsys.dvbs.symbol_rate));
+                                                break;
+                                            case DVBFE_DELSYS_DVBS2:
+                                                fe_params.delsys.dvbs2.symbol_rate = params.u.qpsk.symbol_rate; //TODO: should use the new symbol_rate type
+                                                fe_params.delsys.dvbs2.fec = DVBFE_FEC_AUTO; //TODO: should use the new FEC options
+                                                fe_params.delsys.dvbs.modulation = DVBFE_MOD_AUTO;
+                                                fe_params.delivery= DVBFE_DELSYS_DVBS2;
+                                                VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
+                                                        QString("Frequency = %2, Srate = %3 (DVB-S2)")
+                                                        .arg(fe_params.frequency).arg(fe_params.delsys.dvbs2.symbol_rate));
+                                                break;
+                                            default:
+                                                return false;
 		}
 		VERBOSE(VB_CHANNEL, LOC + "Tune(): " +
-                        QString("Frequency = %1, Srate = %2 (SET_PARAMS)").arg(fe_params.frequency).arg(fe_params.delsys.dvbs.symbol_rate));
-
+                                                QString("Frequency = %1, Srate = %2 (SET_PARAMS)").arg(fe_params.frequency).arg(fe_params.delsys.dvbs.symbol_rate));
+                                        
+                                        if (ioctl(fd_frontend, DVBFE_SET_DELSYS, &delsys) < 0) {
+                                            VERBOSE(VB_IMPORTANT, LOC_ERR +
+                                                    "Tune(): " + "DVB_SET_DELSYS failed");
+                                            return false;
+                                        }
 		if (ioctl(fd_frontend, DVBFE_SET_PARAMS, &fe_params) == -1) {
-			VERBOSE(VB_IMPORTANT, LOC_ERR + "Tune(): " +
-                        	"DVBFE_SET_PARAMS failed");
-			return false;
+                                            VERBOSE(VB_IMPORTANT, LOC_ERR + "Tune(): " +
+                                                    "DVBFE_SET_PARAMS failed");
+                                            return false;
 		}
 
 	}


[-- Attachment #3: Type: text/plain, Size: 150 bytes --]

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [linux-dvb] Re :  TT S2-3200 driver
  2008-07-17 11:54   ` [linux-dvb] Re : " manu
@ 2008-07-17 15:45     ` Daniel Hellström
  2008-07-22 13:26       ` Jelle De Loecker
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Hellström @ 2008-07-17 15:45 UTC (permalink / raw)
  To: linux-dvb

manu <eallaud <at> yahoo.fr> writes:

> If you want to use myth you can try the attached patch (against trunk).
> Make sure that the includes in /usr/include/linux/dvb/ are the one from 
> your multiproto tree (check for a DVBFE_SET_DELSYS define in the 
> frontend.h source).
> Bye
> Manu
> 

I use the patch on this site to add multiprotosupport to MythTV

http://svn.mythtv.org/trac/ticket/5403

It also modifies the channelscanning section in mythtv-setup so you can set the
modulationtype for the transport.





_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [linux-dvb] Re :  TT S2-3200 driver
  2008-07-17 15:45     ` Daniel Hellström
@ 2008-07-22 13:26       ` Jelle De Loecker
  0 siblings, 0 replies; 13+ messages in thread
From: Jelle De Loecker @ 2008-07-22 13:26 UTC (permalink / raw)
  To: Daniel Hellström, LinuxTV DVB Mailing

Daniel Hellström schreef:
> manu <eallaud <at> yahoo.fr> writes:
>   
>> If you want to use myth you can try the attached patch (against trunk).
>> Make sure that the includes in /usr/include/linux/dvb/ are the one from 
>> your multiproto tree (check for a DVBFE_SET_DELSYS define in the 
>> frontend.h source).
>> Bye
>> Manu
>>     
> I use the patch on this site to add multiprotosupport to MythTV
>
> http://svn.mythtv.org/trac/ticket/5403
>
> It also modifies the channelscanning section in mythtv-setup so you can set the
> modulationtype for the transpor
Slightly off-topic, I know (It's the linux-dvb mailing list, and not the 
mythtv one) but could you tell me what revision you where using?

This patch (version 5) keeps failing on me, things seem to have changed 
too much in a few days. Not even manu's patch works.

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [linux-dvb]  Re : TT S2-3200 driver
@ 2008-09-07 17:10 crow
  2008-09-07 21:01 ` Manu Abraham
  0 siblings, 1 reply; 13+ messages in thread
From: crow @ 2008-09-07 17:10 UTC (permalink / raw)
  To: linux-dvb

Hi,
I am also tryint to compile multiproto_plus on kernel 2.6.26-3 (sidux
2008-02) but no luck.
Kernel: Linux vdrbox 2.6.26-3.slh.4-sidux-amd64 #1 SMP PREEMPT Wed Sep
3 19:39:11 UTC 2008 x86_64 GNU/Linux
I tryed it this way:
I downloaded dvb driver from:
apt-get update
apt-get install mercurial
cd /usr/src/
hg clone http://jusst.de/hg/multiproto_plus
mv multiproto dvb
ln -vfs /usr/src/linux-headers-`uname -r` linux
cd /usr/src/dvb/linux/include/linux/
ln -s /usr/src/linux/include/linux/compiler.h compiler.h
cd /usr/src/dvb/
and i am trying make and get this problem :
............
  CC [M]  /usr/src/dvb/v4l/ivtv-gpio.o
  CC [M]  /usr/src/dvb/v4l/ivtv-i2c.o
/usr/src/dvb/v4l/ivtv-i2c.c: In function 'ivtv_i2c_register':
/usr/src/dvb/v4l/ivtv-i2c.c:171: error: 'struct i2c_board_info' has no
member named 'driver_name'
make[3]: *** [/usr/src/dvb/v4l/ivtv-i2c.o] Error 1
make[2]: *** [_module_/usr/src/dvb/v4l] Error 2
make[2]: Leaving directory `/usr/src/linux-headers-2.6.26-3.slh.4-sidux-amd64'
make[1]: *** [default] Error 2
make[1]: Leaving directory `/usr/src/dvb/v4l'
make: *** [all] Error 2
root@vdrbox:/usr/src/dvb#

I wanna try this patch to as i am also TT S2-3200 user.
Any help welcome.

Quote:
>Hello Ales,
>
>> I've used last one, multiproto-2a911b8f9910.tar.bz2.
>
>Against which kernel version do you compile this multiproto set?
>2.6.24 (fc8), 26.25.11, 2.6.26 all gave build errors...
>
>Kind Regards,
>
>Remy

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [linux-dvb] Re : TT S2-3200 driver
  2008-09-07 17:10 [linux-dvb] Re : TT S2-3200 driver crow
@ 2008-09-07 21:01 ` Manu Abraham
  2008-09-07 23:10   ` [linux-dvb] Re : " manu
  0 siblings, 1 reply; 13+ messages in thread
From: Manu Abraham @ 2008-09-07 21:01 UTC (permalink / raw)
  To: crow; +Cc: linux-dvb

crow wrote:
> Hi,
> I am also tryint to compile multiproto_plus on kernel 2.6.26-3 (sidux
> 2008-02) but no luck.
> Kernel: Linux vdrbox 2.6.26-3.slh.4-sidux-amd64 #1 SMP PREEMPT Wed Sep
> 3 19:39:11 UTC 2008 x86_64 GNU/Linux
> I tryed it this way:
> I downloaded dvb driver from:
> apt-get update
> apt-get install mercurial
> cd /usr/src/
> hg clone http://jusst.de/hg/multiproto_plus
> mv multiproto dvb
> ln -vfs /usr/src/linux-headers-`uname -r` linux
> cd /usr/src/dvb/linux/include/linux/
> ln -s /usr/src/linux/include/linux/compiler.h compiler.h
> cd /usr/src/dvb/
> and i am trying make and get this problem :
> ............
>   CC [M]  /usr/src/dvb/v4l/ivtv-gpio.o
>   CC [M]  /usr/src/dvb/v4l/ivtv-i2c.o
> /usr/src/dvb/v4l/ivtv-i2c.c: In function 'ivtv_i2c_register':
> /usr/src/dvb/v4l/ivtv-i2c.c:171: error: 'struct i2c_board_info' has no
> member named 'driver_name'
> make[3]: *** [/usr/src/dvb/v4l/ivtv-i2c.o] Error 1
> make[2]: *** [_module_/usr/src/dvb/v4l] Error 2
> make[2]: Leaving directory `/usr/src/linux-headers-2.6.26-3.slh.4-sidux-amd64'
> make[1]: *** [default] Error 2
> make[1]: Leaving directory `/usr/src/dvb/v4l'
> make: *** [all] Error 2
> root@vdrbox:/usr/src/dvb#
> 
> I wanna try this patch to as i am also TT S2-3200 user.
> Any help welcome.


That tree is being updated and being pushed, you can either wait for a
little while till that tree is populated, or you can pull the multiproto
tree as well.

Regards,
Manu

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [linux-dvb] Re :  Re : TT S2-3200 driver
  2008-09-07 21:01 ` Manu Abraham
@ 2008-09-07 23:10   ` manu
  2008-09-09 13:49     ` Newsy Paper
  0 siblings, 1 reply; 13+ messages in thread
From: manu @ 2008-09-07 23:10 UTC (permalink / raw)
  To: linux-dvb

Le 07.09.2008 17:01:43, Manu Abraham a écrit :
> crow wrote:
> > Hi,
> > I am also tryint to compile multiproto_plus on kernel 2.6.26-3
> (sidux
> > 2008-02) but no luck.
> > Kernel: Linux vdrbox 2.6.26-3.slh.4-sidux-amd64 #1 SMP PREEMPT Wed
> Sep
> > 3 19:39:11 UTC 2008 x86_64 GNU/Linux
> > I tryed it this way:
> > I downloaded dvb driver from:
> > apt-get update
> > apt-get install mercurial
> > cd /usr/src/
> > hg clone http://jusst.de/hg/multiproto_plus
> > mv multiproto dvb
> > ln -vfs /usr/src/linux-headers-`uname -r` linux
> > cd /usr/src/dvb/linux/include/linux/
> > ln -s /usr/src/linux/include/linux/compiler.h compiler.h
> > cd /usr/src/dvb/
> > and i am trying make and get this problem :
> > ............
> >   CC [M]  /usr/src/dvb/v4l/ivtv-gpio.o
> >   CC [M]  /usr/src/dvb/v4l/ivtv-i2c.o
> > /usr/src/dvb/v4l/ivtv-i2c.c: In function 'ivtv_i2c_register':
> > /usr/src/dvb/v4l/ivtv-i2c.c:171: error: 'struct i2c_board_info' has
> no
> > member named 'driver_name'
> > make[3]: *** [/usr/src/dvb/v4l/ivtv-i2c.o] Error 1
> > make[2]: *** [_module_/usr/src/dvb/v4l] Error 2
> > make[2]: Leaving directory `/usr/src/linux-headers-2.6.26-3.slh.4-
> sidux-amd64'
> > make[1]: *** [default] Error 2
> > make[1]: Leaving directory `/usr/src/dvb/v4l'
> > make: *** [all] Error 2
> > root@vdrbox:/usr/src/dvb#
> > 
> > I wanna try this patch to as i am also TT S2-3200 user.
> > Any help welcome.
> 
> 
> That tree is being updated and being pushed, you can either wait for 
> a
> little while till that tree is populated, or you can pull the
> multiproto
> tree as well.

Bye any chance, di you get some time to see my posts about TT-S 3200 
([BUG]: stb6100 getting carrier but stb0899
unable to get data (on a transponder that is emitting
normally) where I describe my problem: basically I can get the carrier 
but search_data fails for a DVB-S transponder with 5/6 FEC and 30MS/s 
whereas all other transp lock OK, they only have a different FEC: 3/4.
Hope you can help me.
BTW: looking at a mantis driver (coming from their website) I saw it 
was pretty close to yours though with some differences, specially for 
init values. Is there any consolidation possible here to get stb0899 
going?
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] 13+ messages in thread

* Re: [linux-dvb] Re :  Re : TT S2-3200 driver
  2008-09-07 23:10   ` [linux-dvb] Re : " manu
@ 2008-09-09 13:49     ` Newsy Paper
  2008-09-09 19:47       ` [linux-dvb] Re : " manu
  0 siblings, 1 reply; 13+ messages in thread
From: Newsy Paper @ 2008-09-09 13:49 UTC (permalink / raw)
  To: linux-dvb

Hi manu!


Are you talking about DVB-S or DVB-s2 are we talking about the same problem.

I experienced those problems on a dvb-s2 transponder with a SR of 30000 and FEC 3/4 currently used on Thor 1°W by Canal Digital Nordic on some of their HD packages.

When I set Sr to 29998 I even get lock, but the stream is totaly corrupted.

kind regards


Newsy


--- manu <eallaud@yahoo.fr> schrieb am Mo, 8.9.2008:

> Von: manu <eallaud@yahoo.fr>
> Betreff: [linux-dvb] Re :  Re : TT S2-3200 driver
> An: linux-dvb@linuxtv.org
> Datum: Montag, 8. September 2008, 1:10
> Le 07.09.2008 17:01:43, Manu Abraham a écrit :
> > crow wrote:
> > > Hi,
> > > I am also tryint to compile multiproto_plus on
> kernel 2.6.26-3
> > (sidux
> > > 2008-02) but no luck.
> > > Kernel: Linux vdrbox 2.6.26-3.slh.4-sidux-amd64
> #1 SMP PREEMPT Wed
> > Sep
> > > 3 19:39:11 UTC 2008 x86_64 GNU/Linux
> > > I tryed it this way:
> > > I downloaded dvb driver from:
> > > apt-get update
> > > apt-get install mercurial
> > > cd /usr/src/
> > > hg clone http://jusst.de/hg/multiproto_plus
> > > mv multiproto dvb
> > > ln -vfs /usr/src/linux-headers-`uname -r` linux
> > > cd /usr/src/dvb/linux/include/linux/
> > > ln -s /usr/src/linux/include/linux/compiler.h
> compiler.h
> > > cd /usr/src/dvb/
> > > and i am trying make and get this problem :
> > > ............
> > >   CC [M]  /usr/src/dvb/v4l/ivtv-gpio.o
> > >   CC [M]  /usr/src/dvb/v4l/ivtv-i2c.o
> > > /usr/src/dvb/v4l/ivtv-i2c.c: In function
> 'ivtv_i2c_register':
> > > /usr/src/dvb/v4l/ivtv-i2c.c:171: error:
> 'struct i2c_board_info' has
> > no
> > > member named 'driver_name'
> > > make[3]: *** [/usr/src/dvb/v4l/ivtv-i2c.o] Error
> 1
> > > make[2]: *** [_module_/usr/src/dvb/v4l] Error 2
> > > make[2]: Leaving directory
> `/usr/src/linux-headers-2.6.26-3.slh.4-
> > sidux-amd64'
> > > make[1]: *** [default] Error 2
> > > make[1]: Leaving directory `/usr/src/dvb/v4l'
> > > make: *** [all] Error 2
> > > root@vdrbox:/usr/src/dvb#
> > > 
> > > I wanna try this patch to as i am also TT S2-3200
> user.
> > > Any help welcome.
> > 
> > 
> > That tree is being updated and being pushed, you can
> either wait for 
> > a
> > little while till that tree is populated, or you can
> pull the
> > multiproto
> > tree as well.
> 
> Bye any chance, di you get some time to see my posts about
> TT-S 3200 
> ([BUG]: stb6100 getting carrier but stb0899
> unable to get data (on a transponder that is emitting
> normally) where I describe my problem: basically I can get
> the carrier 
> but search_data fails for a DVB-S transponder with 5/6 FEC
> and 30MS/s 
> whereas all other transp lock OK, they only have a
> different FEC: 3/4.
> Hope you can help me.
> BTW: looking at a mantis driver (coming from their website)
> I saw it 
> was pretty close to yours though with some differences,
> specially for 
> init values. Is there any consolidation possible here to
> get stb0899 
> going?
> Bye
> Manu
> 
> 
> _______________________________________________
> linux-dvb mailing list
> linux-dvb@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

__________________________________________________
Do You Yahoo!?
Sie sind Spam leid? Yahoo! Mail verfügt über einen herausragenden Schutz gegen Massenmails. 
http://mail.yahoo.com 

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [linux-dvb] Re :  Re : Re : TT S2-3200 driver
  2008-09-09 13:49     ` Newsy Paper
@ 2008-09-09 19:47       ` manu
  0 siblings, 0 replies; 13+ messages in thread
From: manu @ 2008-09-09 19:47 UTC (permalink / raw)
  To: linux-dvb

Le 09.09.2008 09:49:58, Newsy Paper a écrit :
> Hi manu!
> 
> 
> Are you talking about DVB-S or DVB-s2 are we talking about the same
> problem.
> 
> I experienced those problems on a dvb-s2 transponder with a SR of
> 30000 and FEC 3/4 currently used on Thor 1°W by Canal Digital Nordic
> on some of their HD packages.
> 
> When I set Sr to 29998 I even get lock, but the stream is totaly
> corrupted.

I don not have DVB-S2 channels here, only DVB-S. Most are FEC3/4 with 
30000 kS/s rate, the one that does not lock has the same 
characteristics but with 5/6 FEC.
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] 13+ messages in thread

* [linux-dvb] Re :  TT S2-3200 driver
  2008-09-09 14:31 [linux-dvb] " lucian orasanu
@ 2008-09-09 22:40 ` manu
  2008-09-13 17:29 ` manu
  2008-09-13 17:37 ` manu
  2 siblings, 0 replies; 13+ messages in thread
From: manu @ 2008-09-09 22:40 UTC (permalink / raw)
  To: linux-dvb

Le 09.09.2008 10:31:06, lucian orasanu a écrit :
> Hy all
> 
>  Maybe if we post logs, from stb08900 driver tunning to diferent
> transponders that dose not work will help Manu Abraham to solve the
> problem. Right??
> 
> Regards Lucian.

Well I have already done that, but I will redo some tests and post (for 
the last time you can believ me) the logs here with a clear subject ;-)
That will take me a few days though.
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] 13+ messages in thread

* [linux-dvb] Re :  TT S2-3200 driver
  2008-09-09 14:31 [linux-dvb] " lucian orasanu
  2008-09-09 22:40 ` [linux-dvb] Re : " manu
@ 2008-09-13 17:29 ` manu
  2008-09-13 17:37 ` manu
  2 siblings, 0 replies; 13+ messages in thread
From: manu @ 2008-09-13 17:29 UTC (permalink / raw)
  To: linux-dvb; +Cc: Manu Abraham

Le 09.09.2008 10:31:06, lucian orasanu a écrit :
> Hy all
> 
>  Maybe if we post logs, from stb08900 driver tunning to diferent
> transponders that dose not work will help Manu Abraham to solve the
> problem. Right??
> 
> Regards Lucian.

OK, here we go. Attached are several logs: two successes for "good" 
transponders, even if lock is a bit slow to come (freqs: 11093MHz and 
11555MHz)
Two others which are failures for 11495 and 11499 MHz (the actual 
transponder is announced at 11495Mhz freq). As you can see it gets the 
carrier OK (after a while though) but fails to get the data. This 
transponder has the same characteristic (symbol rate is 30000, 
polarisation is vertical) than the 2 others with the only diff being 
the FEC which is 5/6 instead of the more common 3/4.
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] 13+ messages in thread

* [linux-dvb] Re :  TT S2-3200 driver
  2008-09-09 14:31 [linux-dvb] " lucian orasanu
  2008-09-09 22:40 ` [linux-dvb] Re : " manu
  2008-09-13 17:29 ` manu
@ 2008-09-13 17:37 ` manu
  2008-09-13 23:10   ` Manu Abraham
  2 siblings, 1 reply; 13+ messages in thread
From: manu @ 2008-09-13 17:37 UTC (permalink / raw)
  To: linux-dvb; +Cc: Manu Abraham

[-- Attachment #1: Type: text/plain, Size: 22 bytes --]

I forgot the logs...

[-- Attachment #2: TT-3200-logs.tar.bz2 --]
[-- Type: application/x-bzip-compressed-tar, Size: 36946 bytes --]

[-- Attachment #3: Type: text/plain, Size: 150 bytes --]

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [linux-dvb] Re :  TT S2-3200 driver
  2008-09-13 17:37 ` manu
@ 2008-09-13 23:10   ` Manu Abraham
  0 siblings, 0 replies; 13+ messages in thread
From: Manu Abraham @ 2008-09-13 23:10 UTC (permalink / raw)
  To: manu; +Cc: linux-dvb

manu wrote:
> I forgot the logs...


Taking a look at it. Please do note that, i will have to go through it
very patiently.

Thanks for the logs.

Regards,
Manu


_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [linux-dvb] Re : TT S2-3200 driver
       [not found] <mailman.1.1222768801.15304.linux-dvb@linuxtv.org>
@ 2008-09-30 12:21 ` Алексей Субботин
  0 siblings, 0 replies; 13+ messages in thread
From: Алексей Субботин @ 2008-09-30 12:21 UTC (permalink / raw)
  To: linux-dvb

I've got the same card.  
Cannot reliably lock any channels with the symbol rate other than 22000. 
Tried both the latest multiproto drivers and those by Igor.
Sometimes a 27500 channel would suddenly lock (signal/snr being pretty good),
and keeps locking for several minutes.  Then it goes off, and no luck on any 27500 channel 
until I rmmod all dvb stack down to core and reload everything again.

> I'm unable to scan the channels on the Astra 23,5 satellite
> Frequency 11856000
> Symbol rate 27500000
> Vertical polarisation
> FEC 5/6


_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2008-09-30 12:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-07 17:10 [linux-dvb] Re : TT S2-3200 driver crow
2008-09-07 21:01 ` Manu Abraham
2008-09-07 23:10   ` [linux-dvb] Re : " manu
2008-09-09 13:49     ` Newsy Paper
2008-09-09 19:47       ` [linux-dvb] Re : " manu
     [not found] <mailman.1.1222768801.15304.linux-dvb@linuxtv.org>
2008-09-30 12:21 ` [linux-dvb] " Алексей Субботин
  -- strict thread matches above, loose matches on Subject: below --
2008-09-09 14:31 [linux-dvb] " lucian orasanu
2008-09-09 22:40 ` [linux-dvb] Re : " manu
2008-09-13 17:29 ` manu
2008-09-13 17:37 ` manu
2008-09-13 23:10   ` Manu Abraham
2008-07-16 22:23 [linux-dvb] " Ales Jurik
2008-07-17 10:20 ` Remy Bohmer
2008-07-17 11:54   ` [linux-dvb] Re : " manu
2008-07-17 15:45     ` Daniel Hellström
2008-07-22 13:26       ` Jelle De Loecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox