Hama DVB-T USB2 Stick: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
(New page: thumb|250px|Hama DVB-T USB2 Stick A DVB-T USB device from Hama. It is supported under Linux. ===Components Used=== * Micr...)
 
m (→‎Components Used: Added Microtune MT2060 link)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Image:HamaDVB_T-USB2-Stick.jpg|thumb|250px|Hama DVB-T USB2 Stick]]
[[Image:HamaDVB_T-USB2-Stick.jpg|thumb|250px|Hama DVB-T USB2 Stick]]
A [[DVB-T]] [[DVB-T USB Devices|USB device]] from [[Hama]].
A [[DVB-T]] [[DVB-T USB Devices|USB device]] from [[Hama]].

The electronic components are branded as Afatech 9016.
No drivers are found as AFA9016 as expected, but AFA9015 works fine.


It is supported under Linux.
It is supported under Linux.


===Components Used===
===Components Used===
* Microtune MT2060 tuner
* [[Microtune MT2060]] tuner
* Dibcom DiB7700 DVB-T demodulator & USB 2.0 controller
* Dibcom DiB7700 DVB-T demodulator & USB 2.0 controller


Line 11: Line 14:
* idVendor: 0x15a4
* idVendor: 0x15a4
* idProduct: 0x9016
* idProduct: 0x9016

== Making it work ==
=== Firmware ===
Firstly, you need to copy the following firmware [http://www.otit.fi/~crope/v4l-dvb/af9015/af9015_firmware_cutter/firmware_files/4.95.0/dvb-usb-af9015.fw dvb-usb-af9015.fw] in your /lib/firmware/ directory, or in the directory where your system will search for it.

=== Drivers ===
It requires the dvb_usb_af9015 module, as well as dvb_usb, i2c_core, af9013 and mt2060 for tuning.
The main dvb_usb_af9015 is not in the kernel before 2.6.25, so you MUST use the Mercurial way.

A quick way to do this is:
* install mercurial in your distro way
* run, in some user directory:
$ hg clone http://linuxtv.org/hg/v4l-dvb
$ cd v4l-dvb
$ make menuconfig
$ make
# su -
# cd /path/to/the/userdir/v4l-dvb
# make install

See the [[How to Obtain, Build and Install V4L-DVB Device Drivers]] for all the details.

Once modules are compiled and installed, you can plug the stick.
Run
# lsmod | grep af901
If your output is similar to
af9013 20932 1
dvb_usb_af9015 28032 0
dvb_usb 20428 1 dvb_usb_af9015
i2c_core 21656 5 mt2060,af9013,dvb_usb_af9015,dvb_usb
the card should work.

If not, try to load the modules manually
modprobe af9013 dvb_usb_af9015 mt2060


==External Links==
==External Links==
* [http://www.hama.de/portal/articleId*141421/action*2563 Hama product page]
* [http://www.hama.de/portal/articleId*141421/action*2563 Hama product page]


[[Category:DVB-T]]
[[Category:DVB-T USB Devices]]
[[Category:Hardware]]
[[Category:USB]]

Latest revision as of 01:46, 24 May 2009

Hama DVB-T USB2 Stick

A DVB-T USB device from Hama.

The electronic components are branded as Afatech 9016. No drivers are found as AFA9016 as expected, but AFA9015 works fine.

It is supported under Linux.

Components Used

Identification

  • idVendor: 0x15a4
  • idProduct: 0x9016

Making it work

Firmware

Firstly, you need to copy the following firmware dvb-usb-af9015.fw in your /lib/firmware/ directory, or in the directory where your system will search for it.

Drivers

It requires the dvb_usb_af9015 module, as well as dvb_usb, i2c_core, af9013 and mt2060 for tuning. The main dvb_usb_af9015 is not in the kernel before 2.6.25, so you MUST use the Mercurial way.

A quick way to do this is:

  • install mercurial in your distro way
  • run, in some user directory:
$ hg clone http://linuxtv.org/hg/v4l-dvb
$ cd v4l-dvb
$ make menuconfig
$ make
# su -
# cd /path/to/the/userdir/v4l-dvb
# make install

See the How to Obtain, Build and Install V4L-DVB Device Drivers for all the details.

Once modules are compiled and installed, you can plug the stick. Run

# lsmod | grep af901

If your output is similar to

af9013                 20932  1
dvb_usb_af9015         28032  0
dvb_usb                20428  1 dvb_usb_af9015
i2c_core               21656  5 mt2060,af9013,dvb_usb_af9015,dvb_usb

the card should work.

If not, try to load the modules manually

modprobe af9013 dvb_usb_af9015 mt2060

External Links