GoTView SatelliteHD

BlackHole Vu+ Solo 1.6.7 kernel 3.1.1 beta3
Driver=(none)
T: Bus=02 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=480 MxCh= 0
D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
P: Vendor=1fe1 ProdID=5456 Rev= 0.00
S: Manufacturer=Max
S: Product=GoTView Satellite HD
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mA
I:* If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms
I: If#= 0 Alt= 1 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS=3030 Ivl=125us
I: If#= 0 Alt= 2 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS=2178 Ivl=125us
I: If#= 0 Alt= 3 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS=2058 Ivl=125us
I: If#= 0 Alt= 4 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS= 970 Ivl=125us
I: If#= 0 Alt= 5 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS= 684 Ivl=125us
I: If#= 0 Alt= 6 #EPs= 3 Cls=ff(vend.) Sub=01 Prot=01 Driver=(none)
E: Ad=81(I) Atr=03(Int.) MxPS= 64 Ivl=500us
E: Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E: Ad=82(I) Atr=01(Isoc) MxPS= 940 Ivl=125us
 
Thank you very much. The tuner found:
About.jpg
And more:
Choose Tuner.jpg
This is the tuner B:
Satfinder.jpg
Manual scan:
Manual Scan.jpg
But other problems arose:
Find Servis.jpg
Does not find services. What's the problem?
 
Thank you very much. The tuner found:
View attachment 5848
And more:
View attachment 5849
This is the tuner B:
View attachment 5850
Manual scan:
View attachment 5851
But other problems arose:
View attachment 5852
Does not find services. What's the problem?
I'm very happy to see your tuner is been detected now.
I'm very curious: could you please reboot your box and post here the "dmesg" output?
I would like to verify if the device needs some additional firmware and verify if it's correct the place where I've putted the patch.
 
Seems all correct.
Could you please test your device with an already set of settings ?

I admit: I haven't tried the scan function but I've used my TeVii S660 (we share the same driver :) ) with a prebuilt set of settings (for motorized dish in my case).
 
Antenna tuned to Sirius 4/Astra 1E (4.8)
Sirius.jpg
Antenna is also configured to Sirius 4/Astra 1E (4.8)
Amos.jpg
Antenna is not turned.
And so on all satellites and frequencies - the signal is the same.
 
It is possible (prior to compilation) in dw2102,
in
+static int su3000_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
add
info("%s: %d\n", __func__, onoff)
?

Original dw2102:
Code:
1.120 +static int su3000_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
1.121 +{
1.122 + static u8 command_start[] = {0x00};
1.123 + static u8 command_stop[] = {0x01};
1.124 + struct i2c_msg msg = {
1.125 + .addr = SU3000_STREAM_CTRL,
1.126 + .flags = 0,
1.127 + .buf = onoff ? command_start : command_stop,
1.128 + .len = 1
1.129 + };
1.130 +
1.131 + i2c_transfer(&adap->dev->i2c_adap, &msg, 1);
1.132 +
1.133 + return 0;
make it so:
Code:
1.120 +static int su3000_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
1.121 +{
1.122 + static u8 command_start[] = {0x00};
1.123 + static u8 command_stop[] = {0x01};
1.124 + struct i2c_msg msg = {
1.125 + .addr = SU3000_STREAM_CTRL,
1.126 + .flags = 0,
1.127 + .buf = onoff ? command_start : command_stop,
1.128 + .len = 1
1.129 + };
1.130 +
1.131 + info("%s: %d\n", __func__, onoff);
1.132 + i2c_transfer(&adap->dev->i2c_adap, &msg, 1);
1.133 +
1.134 + return 0;
To trace the.

PS: Sorry for my English.
 
Dear friend, I've tested my TeVii S660 with Solo and scan works correctly.

I think I've made a mistake in the source code: you have posted two inf file part and the first couple of packages you have installed reflect the first try to implement your device but no luck for working properly.

Today I will post here the second package who reflect the second inf modification you have posted and you can try if all works properly.
I suggest also to start with a BH Vu+Solo Beta 3 Image who has internally all the binary code needed to support USB DVB-S2 correctly.

Thanks for your patience!
 
In my in TeVii S660, streaming is always present.
And SatelliteHD GOTVIEW must include a "dvb_usb_start_feed".
 
In my in TeVii S660, streaming is always present.
And SatelliteHD GOTVIEW must include a "dvb_usb_start_feed".

Ok my friend.

I've changed init process of your device (now it's equal to DVBSKY board).
Install these IPKs in your image, via telnet do these two commands
Code:
depmod.26
depmod

and try to scan ....

Report also a "dmesg" output after a box reboot...
 

Attachments

I'm sorry. Post # 40 - install, determined adapter. no did scan.
And now tried to scan - Now, did scan
The output driver DVBSKy S860, Cinergy S2 USB HD - are not suitable.
Under windows - also does not work.
In Windows, only with the native driver
 
I'm sorry. Post # 40 - install, determined adapter. no did scan.
And now tried to scan - Now, did scan
The output driver DVBSKy S860, Cinergy S2 USB HD - are not suitable.
Under windows - also does not work.
In Windows, only with the native driver

Could re-write this post in your native language? I will translate it with Google translate ;)
 
Back
Top