Turbosight USB DVB-S Q-Box: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
No edit summary
m (Added category: DVB-S USB Devices)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
A [[DVB-S]] [[DVB-S USB Devices|USB device]] from [[Turbosight]].
I(Igorli) suppose , that firmware in Q-BoxDVBS.sys file lays: offset 0x3918, length 8192.Script:

It is currently unsupported.

==Overview==

USB ID is: VID:0x734C, PID:0x2601.

===Components Used===
* Samsung tuner module with integrated:
** STM STB6000 (tuner pll)
** STM STV0299 (demodulator)
* Cypress CY7C68013A (i.e. FX2) (USB bridge)

===Firmware===
The firmware in Q-BoxDVBS.sys file may reside at: offset 0x3918, length 8192.

Script for extracting it:
#!/usr/bin/perl
#!/usr/bin/perl
Line 6: Line 23:
extract("Q-BoxDVBS.sys", 0x3918, 8192, "dvb-usb-qbox.fw");
extract("Q-BoxDVBS.sys", 0x3918, 8192, "dvb-usb-qbox.fw");

==External Links==
* [http://www.turbosight.com/english/products/product.htm Turbosight product page]
[[Category:DVB-S USB Devices]]

Latest revision as of 20:03, 4 May 2009

A DVB-S USB device from Turbosight.

It is currently unsupported.

Overview

USB ID is: VID:0x734C, PID:0x2601.

Components Used

  • Samsung tuner module with integrated:
    • STM STB6000 (tuner pll)
    • STM STV0299 (demodulator)
  • Cypress CY7C68013A (i.e. FX2) (USB bridge)

Firmware

The firmware in Q-BoxDVBS.sys file may reside at: offset 0x3918, length 8192.

Script for extracting it:

#!/usr/bin/perl

use File::Temp qw/ tempdir /;
use IO::Handle;

    extract("Q-BoxDVBS.sys", 0x3918, 8192, "dvb-usb-qbox.fw");

External Links