Jump to content


Photo

Drivers VU usb turbo tuner


  • Please log in to reply
107 replies to this topic

#1 schneider87

  • Member
  • 1 posts

0
Neutral

Posted 7 May 2015 - 15:34

hi

please update drivers for usb turbo tuner  :)

 

thanks



Re: Drivers VU usb turbo tuner #2 Erik Slagter

  • PLi® Core member
  • 46,951 posts

+541
Excellent

Posted 16 May 2015 - 19:37

They have been in the image for some time. See changelog (git commit log).


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: Drivers VU usb turbo tuner #3 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 27 May 2015 - 08:24

Do any of the PLi team members actually have the device and have checked that it works in the image?


Edited by Huevos, 27 May 2015 - 08:26.


Re: Drivers VU usb turbo tuner #4 Dimitrij

  • PLi® Core member
  • 9,995 posts

+338
Excellent

Posted 27 May 2015 - 09:37

https://github.com/v...vuplus/issues/4

Or I'm wrong?


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Drivers VU usb turbo tuner #5 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 27 May 2015 - 13:51

I'm asking if anyone has tested the device. I'm only asking because I don't have a sample.

 

Why did ATV need these changes to get it working?

https://github.com/o...f2f7b218e255134



Re: Drivers VU usb turbo tuner #6 Erik Slagter

  • PLi® Core member
  • 46,951 posts

+541
Excellent

Posted 27 May 2015 - 14:34

Indeed, we don't have them.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: Drivers VU usb turbo tuner #7 littlesat

  • PLi® Core member
  • 56,262 posts

+691
Excellent

Posted 27 May 2015 - 14:42

I'm afraid we do not accept this part.... :(

 

from boxbranding import getMachineBrand


Edited by littlesat, 27 May 2015 - 14:43.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: Drivers VU usb turbo tuner #8 Dimitrij

  • PLi® Core member
  • 9,995 posts

+338
Excellent

Posted 27 May 2015 - 14:47

I'm afraid we do not accept this part.... :(

 

from boxbranding import getMachineBrand

if getBoxType().startswith('vu')

It's very easy :)


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Drivers VU usb turbo tuner #9 littlesat

  • PLi® Core member
  • 56,262 posts

+691
Excellent

Posted 27 May 2015 - 14:54

I understand how it works, but It is not as it should be in code... We intend to prevent from these kind of checks as far as possible....


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: Drivers VU usb turbo tuner #10 Dimitrij

  • PLi® Core member
  • 9,995 posts

+338
Excellent

Posted 27 May 2015 - 16:59

This patch will solve this bug here http://forums.openpl...ndpost&p=479418


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Drivers VU usb turbo tuner #11 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 27 May 2015 - 19:37

I'm afraid we do not accept this part.... :(

 

from boxbranding import getMachineBrand

I don't see that used anywhere in that py. Not sure why the import is there.



Re: Drivers VU usb turbo tuner #12 Dimitrij

  • PLi® Core member
  • 9,995 posts

+338
Excellent

Posted 27 May 2015 - 19:57


+				if getMachineBrand() in ('Vu+'):
+					skip_t2 = True

Edited by Dimitrij, 27 May 2015 - 19:57.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Drivers VU usb turbo tuner #13 littlesat

  • PLi® Core member
  • 56,262 posts

+691
Excellent

Posted 27 May 2015 - 20:00

getMachineBrand is used to check if the box is a VU box and do some other stuff in E2 when used in a VU box. in fact I think this is not the way it should be done in a general enigma2 code... It should switch on feature, not on Brand.

 

I know there are still some places were some kind of stuff is still somehow included in our E2 (more as left-over) :( ... but still we should avoid it as far as possible.... E.g. when ET or another Brand at a feature than we can get complete lists of if brand x or brand y or brand z... enz... At the end difficult to cover and maintain... (it looks simple in the beginning but...)

 

And I also know OE-A did introduce this getMachineBrand stuff to be able to check for possible (non)features and perform work-a-rounds for specific Brands in the Enigma2 code... But still I think we should keep this out of E2. There are better or other ways to do this kind of stuff... e.g. check/switch for (non)features instead... 


Edited by littlesat, 27 May 2015 - 20:02.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: Drivers VU usb turbo tuner #14 Huevos

  • PLi® Contributor
  • 4,244 posts

+158
Excellent

Posted 27 May 2015 - 22:21

Well we might as well put this on hold until one of us has the device.



Re: Drivers VU usb turbo tuner #15 Dimitrij

  • PLi® Core member
  • 9,995 posts

+338
Excellent

Posted 28 May 2015 - 13:19

Most requested.
Let's all still apply this patch.

https://github.com/o...f2f7b218e255134


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: Drivers VU usb turbo tuner #16 bacicciosat

  • Senior Member
  • 540 posts

+100
Excellent

Posted 29 May 2015 - 08:56

We have turbo tuners.

They are working without the patch but there are issues with DVB-C scan.

 

Open Black Hole and Pli enigma2 ScanSetup are about the same. There is only a little patch to fix Dvb-C/T tuner detection.

http://git.vuplus-co...e60ef913a333a03

 

To add drivers in the image is simply, you can find everywere and in OBH meta-vuplus folder.

Only remember that additional kernel module firmware is needed.

Here is the example:

vuplus-tuner-turbo \

....

${@base_contains('PREFERRED_VERSION_linux-vuplus', '3.13.5', 'kernel-module-cypress-firmware', '', d)} \
${@base_contains('PREFERRED_VERSION_linux-vuplus', '3.9.6', 'kernel-module-dvb-usb-cypress-firmware', '', d)} \

 



Re: Drivers VU usb turbo tuner #17 Erik Slagter

  • PLi® Core member
  • 46,951 posts

+541
Excellent

Posted 29 May 2015 - 08:57

Then VU+ should fix the issues instead of relying on us to workaround them.


Edited by Erik Slagter, 29 May 2015 - 08:57.

* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: Drivers VU usb turbo tuner #18 bacicciosat

  • Senior Member
  • 540 posts

+100
Excellent

Posted 29 May 2015 - 09:08

Then VU+ should fix the issues instead of relying on us to workaround them.

 

There are various commits in Vu+ enigma2 git about scansetup and Turbo

 

2015-04-22     hschang    [ScanSetup] Fix error on complete scan with T2 tuners. vuplus_experimental     commit | commitdiff | tree | snapshot
2015-04-16     hschang    [ScanSetup] fix TT3L10 automatic scan problem.     commit | commitdiff | tree | snapshot
2015-02-17     hschang    [ScanSetup] Fix DVB-T2 Scan when tuner does not have...     commit | commitdiff | tree | snapshot
2015-02-16     hschang    [ScanSetup] Support VUPLUS TURBO automatic scan.     commit | commitdiff | tree | snapshot

 

I have not Cvb-C and cannot test but Ev0 have it and it seems that the changes doesn't fix the issues.

The problem with Vu+ is that they are too much slow in updating and fixing for this reason we don't use their meta-vuplus module in OBH

It is much better to fix and update by yourself than to wait and wait and wait and become old and frustrating.... :)

 

If you need any kind of test i can ask to Ev0 to help.



Re: Drivers VU usb turbo tuner #19 Erik Slagter

  • PLi® Core member
  • 46,951 posts

+541
Excellent

Posted 29 May 2015 - 09:15

I really don't care if VU+ workarounds it in enigma or we do it. It's not the right way. All tuners should be driven equally according to api rules. We can't begin making exceptions for every tuner. VU+ simply must supply a driver that enables enigma to treat it as any other tuner.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: Drivers VU usb turbo tuner #20 bacicciosat

  • Senior Member
  • 540 posts

+100
Excellent

Posted 29 May 2015 - 09:18

yes you are right Erik.




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users