[linux-dvb] WinTV Nova-T-CE driver
Tim Taubert
ttmails at gmx.de
Sun Jan 6 20:26:37 CET 2008
Darren Salt wrote:
>> Have a look at the following wiki page:
>> http://www.linuxtv.org/wiki/index.php/Hauppauge_WinTV-NOVA-T-Stick
>
> Wrong page.
> http://www.linuxtv.org/wiki/index.php/Hauppauge_WinTV-NOVA-T-CE-Stick
This page contains a link to the same patch that doesn't include the
remote control. I modified the patch from
http://linuxtv.org/pipermail/linux-dvb/2007-December/022177.html so that
the remote control is now working.
diff -r c0b10134f05b linux/drivers/media/dvb/dvb-usb/dib0700_devices.c
--- a/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Sun Jan 06
10:54:17 2008 -0200
+++ b/linux/drivers/media/dvb/dvb-usb/dib0700_devices.c Sun Jan 06
20:13:49 2008 +0100
@@ -851,6 +851,7 @@ struct usb_device_id dib0700_usb_id_tabl
{ USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500_PC) },
/* 20 */{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_EXPRESS) },
/* 21 */{ USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U7000) },
+/* 22 */{ USB_DEVICE(USB_VID_HAUPPAUGE,
USB_PID_HAUPPAUGE_NOVA_T_STICK_3) },
{ 0 } /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
@@ -1018,7 +1019,7 @@ struct dvb_usb_device_properties dib0700
},
},
- .num_device_descs = 2,
+ .num_device_descs = 3,
.devices = {
{ "DiBcom STK7070P reference design",
{ &dib0700_usb_id_table[15], NULL },
@@ -1028,7 +1029,16 @@ struct dvb_usb_device_properties dib0700
{ &dib0700_usb_id_table[16], NULL },
{ NULL },
},
- }
+ { "Hauppauge Nova-T Stick",
+ { &dib0700_usb_id_table[22], NULL },
+ { NULL },
+ },
+ },
+
+ .rc_interval = DEFAULT_RC_INTERVAL,
+ .rc_key_map = dib0700_rc_keys,
+ .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys),
+ .rc_query = dib0700_rc_query
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
.num_adapters = 2,
diff -r c0b10134f05b linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
--- a/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Sun Jan 06 10:54:17
2008 -0200
+++ b/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h Fri Jan 04 12:58:27
2008 +0100
@@ -124,6 +124,7 @@
#define USB_PID_HAUPPAUGE_NOVA_T_500_2 0x9950
#define USB_PID_HAUPPAUGE_NOVA_T_STICK 0x7050
#define USB_PID_HAUPPAUGE_NOVA_T_STICK_2 0x7060
+#define USB_PID_HAUPPAUGE_NOVA_T_STICK_3 0x7070
#define USB_PID_HAUPPAUGE_NOVA_TD_STICK 0x9580
#define USB_PID_AVERMEDIA_EXPRESS 0xb568
#define USB_PID_AVERMEDIA_VOLAR 0xa807
Regards, Tim
More information about the linux-dvb
mailing list