<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dison4linux</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dison4linux"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Dison4linux"/>
	<updated>2026-07-21T20:29:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=RaspberryPi_qOrbiter&amp;diff=33498</id>
		<title>RaspberryPi qOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=RaspberryPi_qOrbiter&amp;diff=33498"/>
		<updated>2012-12-06T18:10:47Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
==Device Specification==&lt;br /&gt;
-The Raspberry Pi is an ARM based computer the size of a credit card.  700Mhz, 256MB or 512MB RAM, FastEthernet, 2xUSB, GPIO&lt;br /&gt;
&lt;br /&gt;
-256MB of RAM is insufficient to build lmce.  MakeRelease and MakeRelease_PrepFiles both fail with out of memory errors due to the limited memory available on the RPi.&lt;br /&gt;
-Cross-compiling will be required.  More notes to follow.&lt;br /&gt;
==Debian Chroot Environment==&lt;br /&gt;
One approach is to set up a debian chroot environment, and use qemu with pass though emulation.&lt;br /&gt;
See http://wiki.debian.org/EmDebian/CrossDebootstrap#QEMU.2BAC8-debootstrap_approach&lt;br /&gt;
===Specifically for the Pi with raspbian image===&lt;br /&gt;
&#039;&#039;sudo needed for all of these commands&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Install some necessaries&lt;br /&gt;
 # apt-get install binfmt-support qemu qemu-user-static debootstrap&lt;br /&gt;
&lt;br /&gt;
Next set up the chroot env, create your directory, calling it what you like, if it doesn&#039;t exist.&lt;br /&gt;
 # mkdir raspbian_armhf_wheezy&lt;br /&gt;
&lt;br /&gt;
Bootstrap your new environment&lt;br /&gt;
 # qemu-debootstrap --arch armhf wheezy raspbian_armhf_wheezy http://archive.raspbian.org/raspbian&lt;br /&gt;
&lt;br /&gt;
Mount /proc and friends&lt;br /&gt;
 # mount -t proc proc raspbian_armhf_wheezy/proc&lt;br /&gt;
 # mount -t sysfs sysfs raspbian_armhf_wheezy/sys&lt;br /&gt;
 # mount -o bind /dev raspbian_armhf_wheezy/dev&lt;br /&gt;
&lt;br /&gt;
Not necessary, but you can also mount your existing src directory, if you have one, into your new chroot env.&lt;br /&gt;
 # mount --bind $HOME/path/to/my/src raspbian_armhf_wheezy/home/&amp;lt;user&amp;gt;/lmce/src&lt;br /&gt;
&lt;br /&gt;
Now you are ready to chroot into your new env and get going&lt;br /&gt;
 # LC_ALL=C chroot raspbian_armhf_wheezy&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;apt-get update&#039;&#039; and &#039;&#039;apt-get install &amp;lt;pkg&amp;gt;&#039;&#039; to install needed packages in your chrooted env.&lt;br /&gt;
&lt;br /&gt;
==Cross Compilation setup==&lt;br /&gt;
Initially this section will have information specific to getting Qt on Pi going. Its pre-packaged and fairly easy to install.&lt;br /&gt;
&lt;br /&gt;
At the time of writing Qt on Pi tarball is at version 0.2.&lt;br /&gt;
Get the tarball here http://www.raspberrypi.org/downloads at the bottom of the page. This has a premade SD image plus the toolchain and sysroot install required for cross compilation.&lt;br /&gt;
&lt;br /&gt;
===If you are about to install this on your current machine with a working Qt development environment DON&#039;T===&lt;br /&gt;
You will need to either set up a VM or a chroot environment as the qt5 shipped with this image isn&#039;t setup to install alongside an x86 install. They plan on having these play nice in future releases.&lt;br /&gt;
&lt;br /&gt;
==Qt5, Toolchain and sysroot install==&lt;br /&gt;
This is documented on the QtonPi wiki but basically after you have downloaded the qtonpi tarball extract the three files within.&lt;br /&gt;
Then as root extract [opt-qt5-current.tar.bz2] and [toolchain-and-sysroot-armv5tel.tar.bz2] &lt;br /&gt;
 $ cd /&lt;br /&gt;
 $ sudo tar -jxvf /path to extracted image files/opt-qt5-current.tar.bz2&lt;br /&gt;
 $ sudo tar -jxvf /path to extracted image files/toolchain-and-sysroot-armv5tel.tar.bz2&lt;br /&gt;
&lt;br /&gt;
===Qt creator===&lt;br /&gt;
The tarball comes with a recent version of qtcreator, but since then qt2.5 RC has come out, Should be safe enough to use that instead. Just install that by executing the .bin installer. &#039;&#039;Hold that thought, qt2.5 creator RC doesn&#039;t have the deploy steps set up&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Within Qt creator you need to point it at your cross tool chain compiler+debugger:&lt;br /&gt;
#Tools-&amp;gt;Options-&amp;gt;Build&amp;amp;Run then Tool Chains&lt;br /&gt;
#then select add, in the drop-down pick GCC&lt;br /&gt;
#Select GCC and browse for compiler to&lt;br /&gt;
 /opt/qtonpi/bin/armv5tel-qtonpi-linux-gnueabi-gcc&lt;br /&gt;
and for the debugger&lt;br /&gt;
 /opt/qtonpi/bin/armv5tel-qtonpi-linux-gnueabi-gdb&lt;br /&gt;
Save these selections by clicking Apply and OK&lt;br /&gt;
&lt;br /&gt;
==Raspberry Pi Setup==&lt;br /&gt;
===Virtual using qemu===&lt;br /&gt;
As I don&#039;t have a rpi yet I used qemu to do some initial testing.&lt;br /&gt;
My setup was a 12.04 VM.&lt;br /&gt;
You can either install qemu&lt;br /&gt;
 sudo apt-get install qemu-system&lt;br /&gt;
Or you can build qemu from git. You only need to do this if the qemu on your distro doesn&#039;t support the Broadcom SOC (ARM1176 core) on the Pi.&lt;br /&gt;
In order to boot your image you will need a suitable kernel for your emulator, there is one available here http://dl.dropbox.com/u/45842273/zImage_3.1.9 &lt;br /&gt;
Boot your virtual Pi &lt;br /&gt;
 qemu-system-arm -kernel kernel-qemu -cpu arm1176 -m 256 -M versatilepb -no-reboot -serial stdio -append &amp;quot;root=/dev/sda2 rw panic=1&amp;quot; qtonpi-sdcard-0.2.img -redir tcp:5022::22&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
 console=ttyAMA0&lt;br /&gt;
to the -append param to have the boot console re-directed to the terminal.&lt;br /&gt;
&lt;br /&gt;
the -redir tcp:5022::22 redirects port 22 (ssh) on the virtual Pi to port 5022 on the host enabling you to ssh in.&lt;br /&gt;
 ssh pi@localhost -p5022&lt;br /&gt;
===Raspberry Pi Setup===&lt;br /&gt;
I used the image I was using above and wrote it to an SD card.&#039;&#039;If you are on windows make sure your machine can handle larger cards&#039;&#039;&lt;br /&gt;
By default the qtonpi release doesn&#039;t have the network if enabled. On each boot you can run&lt;br /&gt;
 ifup eth0&lt;br /&gt;
or&lt;br /&gt;
 dhclient eth0&lt;br /&gt;
or&lt;br /&gt;
 just edit /etc/sysconfig/network-scripts/ifcfg-eth0 and set the ONBOOT option equal to YES and be done with it.&lt;br /&gt;
&lt;br /&gt;
Also you need to set the time and date after each boot - no RTC on the rPi&lt;br /&gt;
&lt;br /&gt;
==Code Changes==&lt;br /&gt;
According to the current Qt Documentation adding&lt;br /&gt;
 greaterThan(QT_MAJOR_VERSION, 4) {&lt;br /&gt;
        QT += widgets&lt;br /&gt;
        QT += quick1&lt;br /&gt;
    } else {&lt;br /&gt;
        QT += declarative&lt;br /&gt;
    }&lt;br /&gt;
to the pro file loads the correct modules for both Qt4/Qt5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;04/07/2012&#039;&#039; - see ticket [http://svn.linuxmce.org/trac.cgi/ticket/1497 trac #1497] code checked into svn.&lt;br /&gt;
&lt;br /&gt;
===&amp;quot;Useful&amp;quot; Qt links===&lt;br /&gt;
http://qt-project.org/wiki/Transition_from_Qt_4.x_to_Qt5&lt;br /&gt;
&lt;br /&gt;
https://qt-project.org/wiki/New_Signal_Slot_Syntax&lt;br /&gt;
&lt;br /&gt;
http://qt-project.org/wiki/Qt-5Features&lt;br /&gt;
&lt;br /&gt;
http://qt-project.org/wiki/QML1-vs-QML2&lt;br /&gt;
&lt;br /&gt;
A recent but good addition http://doc-snapshot.qt-project.org/5.0/qtquick-porting-qt5.html#porting-c-code&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know whether these apply to how Qt5 will be when it is released, but they don&#039;t completely correspond to it in its current state, so don&#039;t believe all you read.&lt;br /&gt;
&lt;br /&gt;
==Raspberry Pi distros==&lt;br /&gt;
Looking at http://elinux.org/RPi_Distributions there are quite a few to choose from.&lt;br /&gt;
&lt;br /&gt;
Which is the best fit? I don&#039;t know.&lt;br /&gt;
&lt;br /&gt;
I&#039;m starting with QtonPi but I don&#039;t know if a full fedora release is necessary.&lt;br /&gt;
&#039;&#039;This is actually a trimmed down fedora release no X, graphics written direct to fb&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Mer/Meego might be a good fit too.&lt;br /&gt;
&lt;br /&gt;
=qOrbiter on Pi=&lt;br /&gt;
==QtonPi 0.2 image==&lt;br /&gt;
trimmed down fedora remix with qt5 pre-installed, no gui.&lt;br /&gt;
====Status====&lt;br /&gt;
&#039;&#039;28/05/2012&#039;&#039; - Unfortunately I have not been able to get my compiled qOrbiter to run on my virtual setup.&lt;br /&gt;
Depending on the combination of kernel I use and/or SD image I either get an illegal instruction or and error creating a vchiq instance.&lt;br /&gt;
&lt;br /&gt;
And given that the vchiq lib stuff is to do with the GPU, which is initialised in firmware, this may be a bit of an impass until I get actual hardware.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;30/05/2012&#039;&#039; - Have just received my rPi and my previously compiled qOrbiter starts and gets past the vchiq/illegal instruction I had.&lt;br /&gt;
I have other issues before I get it going but all going in the right direction.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;02/06/2012&#039;&#039; - qOrbiter splash screen loads, communicates with dcerouter, gets config - then boom my network dies. I don&#039;t know if its rPi specific or some porting issue with qOrbiter. I see &#039;&#039;smsc95xx 1-1.1:1.0: eth0: kevent 2 may have been dropped&#039;&#039; scroll past me. My ssh connection dies as a result so I need to be logged in on the rPi. Needs more investigation...&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;06/06/2012&#039;&#039; - got past n/w problem, now home screen loads. Also had to disable qml screen saver. The shader effect component is supposed to be available via QtQuick 2.0 and not need the labs plugin, but this appears not to be the case. It is likely it is just not in the snapshot yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;08/06/2012&#039;&#039; - It seems there is no mouse support in the current 0.2 qtonpi SD image. This is a deal breaker until 0.3 image is released. Mouse support has been checked into git so is available if we roll our own qt5.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;28/08/2012&#039;&#039; - I don&#039;t think there will be an update for this - so am going to consider it parked.&lt;br /&gt;
&lt;br /&gt;
==Next image - Debian Wheezy==&lt;br /&gt;
Investigating a debian wheezy port at the moment - should eek out a bit more speed using hardfp. There are qt50-snapshots available for the target. May need to set up a separate toolchain.&lt;br /&gt;
===Status===&lt;br /&gt;
&#039;&#039;11/06/2012&#039;&#039; - existing qOrbiter won&#039;t run on target, need to link against newer qt5 sysroot on host.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;19/06/2012&#039;&#039; - have rebuilt and linked qOrbiter against qt5 from git. Up and running again on my Raspberry Pi. The default CPU/GPU split of 192/64 allows qOrbiter to run, lower one - 244/32 gives an error creating the display surface. Will bump up split to 128/128 if I get display issues.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;22/06/2012&#039;&#039; - as I thought, I had to move the split to 128/128 and now I get no GL memory errors and the background effects work on the home screen. I need to find out why switching threads away from the qml engine is failing.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;28/08/2012&#039;&#039; - Using the Raspbian image - (hardfp debian wheezy). Qt5 snapshots are being rolled for the target so apt can be used to install on Pi. In process of rolling qmake and friends for host to match. Next step build qOrbiter again.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;04/10/2012&#039;&#039; - Using the latest (Sept) Raspbian image - (hardfp debian wheezy). Qt5 snapshots were being rolled for the target so apt can be used to install on Pi, this seems to be in limbo at the moment, so may install version I&#039;ve just compiled. Have just built qmake and friends for host to match.&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=File:Ionitx-g-e_image2.jpg&amp;diff=26740</id>
		<title>File:Ionitx-g-e image2.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=File:Ionitx-g-e_image2.jpg&amp;diff=26740"/>
		<updated>2011-01-18T01:13:25Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22663</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22663"/>
		<updated>2010-03-18T20:20:34Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;&#039;Partially&#039;&#039;&#039; &#039;&#039;Manual set-up required as of 03/13/2010.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
        04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
                Subsystem: 0070:8851&lt;br /&gt;
                Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
                Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
                Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
                Interrupt: pin A routed to IRQ 11&lt;br /&gt;
                Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                        Address: 0000000000000000  Data: 0000&lt;br /&gt;
                Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                        DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                        DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                                MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                        DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                        LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                                ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                        LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                        LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
                Capabilities: [74] Power Management version 3&lt;br /&gt;
                        Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
                Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[ Category : Video ]]&lt;br /&gt;
[[ Category : TV_Cards ]]&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22653</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22653"/>
		<updated>2010-03-16T15:09:38Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* LinuxMCE Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;&#039;Partially&#039;&#039;&#039; &#039;&#039;Manual set-up required as of 03/13/2010.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
        04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
                Subsystem: 0070:8851&lt;br /&gt;
                Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
                Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
                Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
                Interrupt: pin A routed to IRQ 11&lt;br /&gt;
                Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                        Address: 0000000000000000  Data: 0000&lt;br /&gt;
                Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                        DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                        DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                                MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                        DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                        LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                                ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                        LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                        LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
                Capabilities: [74] Power Management version 3&lt;br /&gt;
                        Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
                Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22638</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22638"/>
		<updated>2010-03-13T16:33:46Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* LinuxMCE Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;&#039;Yes&#039;&#039;&#039; &#039;&#039;Manual set-up required as of 03/13/2010.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
        04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
                Subsystem: 0070:8851&lt;br /&gt;
                Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
                Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
                Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
                Interrupt: pin A routed to IRQ 11&lt;br /&gt;
                Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                        Address: 0000000000000000  Data: 0000&lt;br /&gt;
                Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                        DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                        DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                                MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                        DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                        LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                                ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                        LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                        LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
                Capabilities: [74] Power Management version 3&lt;br /&gt;
                        Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
                Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22631</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22631"/>
		<updated>2010-03-12T17:40:26Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* lspci Output */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
        04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
                Subsystem: 0070:8851&lt;br /&gt;
                Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
                Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
                Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
                Interrupt: pin A routed to IRQ 11&lt;br /&gt;
                Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                        Address: 0000000000000000  Data: 0000&lt;br /&gt;
                Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                        DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                        DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                                MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                        DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                        LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                                ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                        LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                        LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
                Capabilities: [74] Power Management version 3&lt;br /&gt;
                        Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
                Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
                Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22627</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22627"/>
		<updated>2010-03-11T00:23:32Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* lspci Output */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
        04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
                Subsystem: 0070:8851&lt;br /&gt;
                Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
                Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
                Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
                Interrupt: pin A routed to IRQ 11&lt;br /&gt;
                Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
                Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                        Address: 0000000000000000  Data: 0000&lt;br /&gt;
                Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                        DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                        DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                                MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                        DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                        LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                                ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                        LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                        LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
                Capabilities: [74] Power Management version 3&lt;br /&gt;
                        Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
        Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22626</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22626"/>
		<updated>2010-03-11T00:21:42Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* lspci Output */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
        Subsystem: 0070:8851&lt;br /&gt;
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
        Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
        Interrupt: pin A routed to IRQ 11&lt;br /&gt;
        Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
        Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
        Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                Address: 0000000000000000  Data: 0000&lt;br /&gt;
        Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                        ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                        MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                        ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                        ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
        Capabilities: [74] Power Management version 3&lt;br /&gt;
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
        Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22625</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22625"/>
		<updated>2010-03-11T00:21:11Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
== lspci Output ==&lt;br /&gt;
&amp;lt;nowiki&amp;gt;04:00.0 0480: 1131:7164 (rev 81)&lt;br /&gt;
        Subsystem: 0070:8851&lt;br /&gt;
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-&lt;br /&gt;
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &amp;gt;TAbort- &amp;lt;TAbort- &amp;lt;MAbort- &amp;gt;SERR- &amp;lt;PERR- INTx-&lt;br /&gt;
        Latency: 0, Cache Line Size: 64 bytes&lt;br /&gt;
        Interrupt: pin A routed to IRQ 11&lt;br /&gt;
        Region 0: Memory at e3000000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
        Region 2: Memory at e3400000 (64-bit, non-prefetchable) [size=4M]&lt;br /&gt;
        Capabilities: [40] Message Signalled Interrupts: Mask- 64bit+ Queue=0/4 Enable-&lt;br /&gt;
                Address: 0000000000000000  Data: 0000&lt;br /&gt;
        Capabilities: [50] Express (v1) Endpoint, MSI 00&lt;br /&gt;
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s &amp;lt;256ns, L1 &amp;lt;1us&lt;br /&gt;
                        ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-&lt;br /&gt;
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-&lt;br /&gt;
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-&lt;br /&gt;
                        MaxPayload 128 bytes, MaxReadReq 128 bytes&lt;br /&gt;
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-&lt;br /&gt;
                LnkCap: Port #1, Speed 2.5GT/s, Width x2, ASPM L0s L1, Latency L0 &amp;lt;4us, L1 &amp;lt;64us&lt;br /&gt;
                        ClockPM- Suprise- LLActRep- BwNot-&lt;br /&gt;
                LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-&lt;br /&gt;
                        ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-&lt;br /&gt;
                LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-&lt;br /&gt;
        Capabilities: [74] Power Management version 3&lt;br /&gt;
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot-,D3cold-)&lt;br /&gt;
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-&lt;br /&gt;
        Capabilities: [7c] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [100] Vendor Specific Information &amp;lt;?&amp;gt;&lt;br /&gt;
        Capabilities: [160] Virtual Channel &amp;lt;?&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22614</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22614"/>
		<updated>2010-03-09T20:27:50Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Versions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22613</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22613"/>
		<updated>2010-03-09T20:27:28Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Product Info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
&#039;&#039;From [http://www.hauppauge.com/site/products/data_hvr2250.html Manufacturer&#039;s Web Site]&#039;&#039;&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22612</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22612"/>
		<updated>2010-03-09T20:26:55Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
(from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com])&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&#039;&#039;from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]&#039;&#039;&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22611</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22611"/>
		<updated>2010-03-09T20:26:09Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info ==&lt;br /&gt;
(from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com])&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22610</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22610"/>
		<updated>2010-03-09T20:25:28Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only:  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22609</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22609"/>
		<updated>2010-03-09T20:24:57Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: /* Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Dual digital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only.  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22608</id>
		<title>Hauppauge WinTV-HVR-2250</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Hauppauge_WinTV-HVR-2250&amp;diff=22608"/>
		<updated>2010-03-09T20:22:46Z</updated>

		<summary type="html">&lt;p&gt;Dison4linux: New page: == Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) == * Dual dhttp://wiki.linuxmce.org/skins/common/images/button_link.pngigital TV receive...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Product Info (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Dual dhttp://wiki.linuxmce.org/skins/common/images/button_link.pngigital TV receivers for ATSC or clear QAM&lt;br /&gt;
* Dual built-in hardware MPEG-2 encoders&lt;br /&gt;
* Built-in antenna splitter&lt;br /&gt;
* PCI Express (PCIe) x1 interface&lt;br /&gt;
* S-Video, composite video and stereo audio inputs&lt;br /&gt;
&lt;br /&gt;
== Versions (from [http://www.hauppauge.com/site/products/data_hvr2250.html www.hauppauge.com]) ==&lt;br /&gt;
* Model 0&#039;&#039;&#039;1213&#039;&#039;&#039;: WinTV-HVR-2250 Media Center Kit: includes a Media Center certified remote control transmitter, an IR remote control receiver/blaster cable, an A/V breakout cable for the primary A/V input, an auxiliary A/V panel and cable to add a second set of audio/video inputs, and an IR transmitter cable to control a second set top box thorugh the auxiliary A/V panel&lt;br /&gt;
* Model 0&#039;&#039;&#039;1229&#039;&#039;&#039;: WinTV-HVR-2250 Board Only.  Includes optional half height bracket and an auxiliary A/V panel and cable to add a second set of audio/video inputs. Remote control not included.&lt;br /&gt;
&lt;br /&gt;
== LinuxMCE Support ==&lt;br /&gt;
This card is listed as &#039;&#039;Plug and Play&#039;&#039; in the [http://wiki.linuxmce.org/index.php/Capture_Cards Capture Cards WIKI].&lt;br /&gt;
&lt;br /&gt;
Working in 0710: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Working in 0810: &#039;&#039;Unknown&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
&#039;&#039;Place instructions to get card working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get MCE remote working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Place instructions to get IR blasters working here&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
(Work In Progress)&lt;br /&gt;
&lt;br /&gt;
--[[User:Dison4linux|Dison4linux]] 21:22, 9 March 2010 (CET)&lt;/div&gt;</summary>
		<author><name>Dison4linux</name></author>
	</entry>
</feed>