Opened 17 years ago

Closed 17 years ago

#3460 closed defect (fixed)

Patch to mythtv/contrib/channel_changers/6200ch.c

Reported by: anonymous Owned by: danielk
Priority: minor Milestone: 0.21
Component: contrib Version: head
Severity: medium Keywords:
Cc: Ticket locked: no

Description

Hi,

I have a Motorola DCT6200 HD Cable Tuner box, and it won't work properly with changing channels. Apparently, various DCT6200 cable boxes have various vendor IDs, and one of mine isn't in 6200ch.c. (I have two cable boxes; the second one works fine.)

If I patch 6200ch.c, then it works fine. Patch below. This is against svn (to ease merging issues), although I'm actually running it against 0.20-fixes. Can this patch please be checked in? Thanks!

I've never opened a TRAC bug before ... Hope I'm doing this right!

-- Jeff

Index: 6200ch.c =================================================================== --- 6200ch.c (revision 13448) +++ 6200ch.c (working copy) @@ -49,6 +49,7 @@

#define DCT6200_VENDOR_ID10 0x000016b5 #define DCT6200_VENDOR_ID11 0x00001371 #define DCT6200_VENDOR_ID12 0x000019a6

+#define DCT6200_VENDOR_ID13 0x00001aad

#define DCT6200_SPEC_ID 0x00005068 #define DCT6200_SW_VERSION 0x00010101 #define DCT6200_MODEL_ID1 0x0000620a

@@ -193,6 +194,7 @@

(dir.vendor_id == DCT6200_VENDOR_ID10) (dir.vendor_id == DCT6200_VENDOR_ID11) (dir.vendor_id == DCT6200_VENDOR_ID12)
+ (dir.vendor_id == DCT6200_VENDOR_ID13)
(dir.vendor_id == DCT6412_VENDOR_ID1) (dir.vendor_id == DCT6412_VENDOR_ID2) (dir.vendor_id == DCT6416_VENDOR_ID1)

Attachments (1)

6200ch.patch (840 bytes) - added by jeff-www-mythtv@… 17 years ago.
Patch as a file (upload mangled newlines)

Download all attachments as: .zip

Change History (3)

Changed 17 years ago by jeff-www-mythtv@…

Attachment: 6200ch.patch added

Patch as a file (upload mangled newlines)

comment:1 Changed 17 years ago by danielk

Milestone: unknown0.21
Owner: changed from Isaac Richards to danielk
Version: unknownhead

comment:2 Changed 17 years ago by danielk

Resolution: fixed
Status: newclosed

(In [13483]) Fixes #3460. Adds a new vendor id for a Motorolla 6200 STB.

Note: See TracTickets for help on using tickets.