MSI DigiVox Trio: Difference between revisions
Jump to navigation
Jump to search
W3ird n3rd (talk | contribs) No edit summary |
W3ird n3rd (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
At least the tuner, demodulator and em2884 are also found in the (supported) [[PCTVSystems_QuatroStick-nano_520e|PCTV QuatroStick nano (520e)]]. |
At least the tuner, demodulator and em2884 are also found in the (supported) [[PCTVSystems_QuatroStick-nano_520e|PCTV QuatroStick nano (520e)]]. |
||
== |
==Making it work== |
||
Load the em28xx driver as if this device is a Terratec H5 (card=79). DVB-C will work, analog won't, DVB-T untested. |
|||
<pre> |
<pre> |
||
sudo modprobe em28xx card=79 |
sudo modprobe em28xx card=79 |
||
echo eb1a 2885 | sudo tee /sys/bus/usb/drivers/em28xx/new_id |
echo eb1a 2885 | sudo tee /sys/bus/usb/drivers/em28xx/new_id |
||
</pre> |
|||
If you compile v4l-dvb yourself, you can add this to the list of cards in the source code of linux/drivers/media/usb/em28xx/em28xx-cards.c: |
|||
<pre> |
|||
{ USB_DEVICE(0xeb1a, 0x2885), /* MSI Digivox Trio */ |
|||
.driver_info = EM2884_BOARD_TERRATEC_H5 }, |
|||
</pre> |
</pre> |
||
==External Links== |
==External Links== |
Revision as of 23:07, 23 October 2013
A combined DVB-C and DVB-T (and Analog TV/radio) USB 2.0 device from MSI.
Driver support
As of june 2013, unsupported in v4l-dvb. It would appear it was once supported in em28xx-new, but this project was dropped.
lsusb
Bus 001 Device 003: ID eb1a:2885 eMPIA Technology, Inc.
Hardware
- nxp tda18271hdc2 (tuner)
- micronas drx 3926ka3 (demodulator, 3in1)
- em2884
- atmlh946 64c (eeprom)
- micronas avf 4910ba1
At least the tuner, demodulator and em2884 are also found in the (supported) PCTV QuatroStick nano (520e).
Making it work
Load the em28xx driver as if this device is a Terratec H5 (card=79). DVB-C will work, analog won't, DVB-T untested.
sudo modprobe em28xx card=79 echo eb1a 2885 | sudo tee /sys/bus/usb/drivers/em28xx/new_id
If you compile v4l-dvb yourself, you can add this to the list of cards in the source code of linux/drivers/media/usb/em28xx/em28xx-cards.c:
{ USB_DEVICE(0xeb1a, 0x2885), /* MSI Digivox Trio */ .driver_info = EM2884_BOARD_TERRATEC_H5 },