Drivers Newmi



2010-08-25 13:08:48 UTC
NewmiNewmiDriversDrivers Newmi
Adding the USB ID for my TerraTec Electronic GmbH Cinergy T RC MKII
[0ccd:0097] and hooking it up into af9015, on top of your new NXP TDA18218
patches, makes it work for me.
Just the shipped IR remote control doesn't seem to create keycode events
yet (tested with different remote=%d parameters), are there any hints to
add support for that?
[ 2.250022] usb 1-10: new high speed USB device using ehci_hcd and address 5
[ 2.369287] usb 1-10: New USB device found, idVendor=0ccd, idProduct=0097
[ 2.369290] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.369293] usb 1-10: Product: USB2.0 DVB-T TV Stick
[ 2.369294] usb 1-10: Manufacturer: NEWMI
[ 2.369296] usb 1-10: SerialNumber: 010101010600001
[ 2.534023] usbcore: registered new interface driver hiddev
[ 2.537235] input: NEWMI USB2.0 DVB-T TV Stick as /devices/pci0000:00/0000:00:02.1/usb1/1-10/1-10:1.1/input/input0
[ 2.537323] generic-usb 0003:0CCD:0097.0001: input,hidraw0: USB HID v1.01 Keyboard [NEWMI USB2.0 DVB-T TV Stick] on usb-0000:00:02.1-10/input1
[ 2.537349] usbcore: registered new interface driver usbhid
[ 2.537351] usbhid: USB HID core driver
[ 3.263177] generic-usb 0003:04D9:1603.0002: input,hidraw1: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:02.0-8.1/input0
[ 3.286946] generic-usb 0003:04D9:1603.0003: input,hidraw2: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:02.0-8.1/input1
[ 3.467136] generic-usb 0003:046D:C050.0004: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:02.0-8.2/input0
[ 3.660890] generic-usb 0003:10D5:000D.0005: input,hidraw4: USB HID v1.10 Keyboard [No brand SP02-A1] on usb-0000:00:02.0-8.3/input0
[ 5.567632] dvb-usb: found a 'TerraTec Cinergy T Stick RC' in cold state, will try to load a firmware
[ 5.693497] dvb-usb: downloading firmware from file 'dvb-usb-af9015.fw'
[ 5.773109] dvb-usb: found a 'TerraTec Cinergy T Stick RC' in warm state.
[ 5.773168] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[ 5.774290] DVB: registering new adapter (TerraTec Cinergy T Stick RC)
[ 6.007696] af9013: firmware version:5.1.0
[ 6.010843] DVB: registering adapter 0 frontend 0 (Afatech AF9013 DVB-T)...
[ 6.032697] tda18218: NXP TDA18218HN successfully identified.
[ 6.034442] dvb-usb: TerraTec Cinergy T Stick RC successfully initialized and connected.
[ 6.040612] usbcore: registered new interface driver dvb_usb_af9015
Signed-off-by: Stefan Lippers-Hollmann <s.l-***@gmx.de>
---
This depends on the git pull request 'NXP TDA18218 silicon tuner driver'
from Antti Palosaari <***@iki.fi> and does not apply to -stable:
* NXP TDA18218 silicon tuner driver
* af9013: add support for tda18218 silicon tuner
* af9015: add support for tda18218 silicon tuner
drivers/media/dvb/dvb-usb/af9015.c | 8 +++++++-
drivers/media/dvb/dvb-usb/dvb-usb-ids.h | 1 +
2 files changed, 8 insertions(+), 1 deletion(-)
--- a/drivers/media/dvb/dvb-usb/af9015.c
+++ b/drivers/media/dvb/dvb-usb/af9015.c
@@ -1307,6 +1307,7 @@ static struct usb_device_id af9015_usb_t
{USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV2000DS)},
/* 30 */{USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB383_T)},
{USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_395U_4)},
+ {USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK_RC)},
{0},
};
MODULE_DEVICE_TABLE(usb, af9015_usb_table);
@@ -1580,7 +1581,7 @@ static struct dvb_usb_device_properties
.i2c_algo = &af9015_i2c_algo,
- .num_device_descs = 8, /* max 9 */
+ .num_device_descs = 9, /* max 9 */
.devices = {
{
.name = 'AverMedia AVerTV Volar GPS 805 (A805)',
@@ -1625,6 +1626,11 @@ static struct dvb_usb_device_properties
.cold_ids = {&af9015_usb_table[30], NULL},
.warm_ids = {NULL},
},
+ {
+ .name = 'TerraTec Cinergy T Stick RC',
+ .cold_ids = {&af9015_usb_table[32], NULL},
+ .warm_ids = {NULL},
+ },
}
},
};
--- a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
+++ b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h
@@ -133,6 +133,7 @@
#define USB_PID_KWORLD_VSTREAM_WARM 0x17df
#define USB_PID_TERRATEC_CINERGY_T_USB_XE 0x0055
#define USB_PID_TERRATEC_CINERGY_T_USB_XE_REV2 0x0069
+#define USB_PID_TERRATEC_CINERGY_T_STICK_RC 0x0097
#define USB_PID_TWINHAN_VP7041_COLD 0x3201
#define USB_PID_TWINHAN_VP7041_WARM 0x3202
#define USB_PID_TWINHAN_VP7020_COLD 0x3203

Drivers New Pc

Newmi

— Michigan is set to start on Monday issuing driver’s licenses that residents eventually need to board domestic flights if they don’t have passports or other accepted documents. Premium Office apps, extra cloud storage, advanced security, and more – all in one convenient subscription. Drivers could receive £4,000 selling petrol and diesel cars in Mazda scrappage scheme. New tyre law hitting in February will make vehicles illegal and result in huge fines. A solid performer DriverUpdate™ spares you the potentially laborious task of checking all of your drivers to see if they're up to date—and it makes it quite easy to do so. Both the PC pro and amateur can use this tool to maintain a healthy, functioning PC. PC Mag, January 2017.

Drivers News Source Abbr Crossword

ProgDVB x64- the universal and very power software for watching digital TV and listening to radio channels. ProgDVB Professional is a complex yet simple to use digital video broadcasting tool that allows you to enjoy online radio and TV channels directly from your PC. It’s packed with all kinds of features that are sure to make your experience pleasant. You can watch your shows in full screen as well as in window mode. The second hides the interface and leaves you with a resizable window that you can place anywhere on your screen and enjoy a news broadcast while working on a project.
ProgDVB Professional x64 enables you to group the channels by network or provider, sort them by country, genre, popularity and type. You can even add new channels and organize them into custom folders. All this means that you can really focus on gathering and creating quality content for you. You can easily say that ProgDVB Professional is a media broadcasting center that can be fitted to anyone’s taste.
Support for various types of data sources:
Internet TV and Radio. About 4000 channels in the list.
Search, playback and record or YouTube clips.
DVB-S (satellite), DVB-S2, DVB-C (cable), DVB-T, ATSC, ISDB-T
IPTV
Analog TV
Playback from a file
Main functions:
High Definition TV support including H.264/AVC
Picture-in-picture support as well as independent simultaneous recording/playback of several channels from one or more devices
Mosaic fast channels preview
Support for the majority of DVB, ISDB-T and ATSC devices including DiSEqC and CAM interfaces support
Support for all digital TV audio formats: MPEG, AC3, AAC,...
Time shifting functionality using the RAM or disk buffer of unlimited size
10 Bands equalizer
TV and Radio channels recording
Playback from disk based files
Electronic program guide (EPG) from Digital TV or XmlTV,JTV.
Teletext
Subtile(Teletext, image-based and closed captions)
Support for VR, VMR7,VMR9 and EVR renderers including OSD (except VR) independently from channel type or signal presence
Network broadcasting
Skins for OSD and GUI
Both Win32 and full-fledged Win64 versions are available
Interface Language Localizations
Currently works with DVB-S, DVB-S2, DVB-T and DVB-C cards of the following manufactures:
Anysee (E30S Plus,...)
AverMedia DVB-S
Azurewave (TwinHan) (VP-1027, VP-1034, VP-1041,... ).
BroadLogic 2030/1030
Compro VideoMate DVB-S
Digital everywhere FireDTV/FloppyDTV
DVBWorld USB2.0 DVB-S/DVBWorldDTV(PCI-Sat), Acorp TV878DS/DS110/DS120, Nextorm NBS240/NSC120
GeniaTech products(Digistar DVB-S PCI, satbox, TVStar, Digistar2, Digiwave 103G,...)
Hauppauge
Kworld DVB-S 100 compatible (Vstream, Dynavision..... )
LifeView FlyDVB
10moons
Netcast DVB
NEWMI Advanced DVB
Pinnacle
Technotrend
Tevii
TBS Q-Box
Technisat
Telemann Skymedia 300 DVB (not official)
Tongshi
Terratec
St@rKey usb box
Cards with BDA driver (possible issues with some cards)
Also works without a card, for example, as a video player or as a broadcast client




Comments are closed.