From owner-freebsd-multimedia Fri Aug 22 13:53:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA01555 for multimedia-outgoing; Fri, 22 Aug 1997 13:53:38 -0700 (PDT) Received: from Ilsa.StevesCafe.com (Ilsa.StevesCafe.com [205.168.119.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA01550 for ; Fri, 22 Aug 1997 13:53:34 -0700 (PDT) Received: from Ilsa.StevesCafe.com (localhost [127.0.0.1]) by Ilsa.StevesCafe.com (8.8.7/8.8.5) with ESMTP id OAA00194; Fri, 22 Aug 1997 14:52:09 -0600 (MDT) Message-Id: <199708222052.OAA00194@Ilsa.StevesCafe.com> X-Mailer: exmh version 2.0gamma 1/27/96 From: Steve Passe To: Kyle Mestery cc: Amancio Hasty , Kenneth Merry , freebsd-multimedia@FreeBSD.ORG Subject: Re: Problem with my Wincast, fxtv In-reply-to: Your message of "Fri, 22 Aug 1997 15:34:32 CDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 22 Aug 1997 14:52:09 -0600 Sender: owner-freebsd-multimedia@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi, the next thing to check is the band selection. one major difference between the tuners is one of the i2c parts inside it. I believe you've made a patch to deal with misprobed tuner, so you need to verify which values ACTUALLY got selected for the band switch. after the probe finishes printout bktr->card.tuner AND the address of the tuner you think you selected (one entry in tuners[]), presummably &tuners[4]: /* indexes into tuners[] */ #define NO_TUNER 0 #define TEMIC_NTSC 1 #define TEMIC_PAL 2 #define TEMIC_SECAM 3 #define PHILIPS_NTSC 4 #define PHILIPS_PAL 5 #define PHILIPS_SECAM 6 they should be the same, it not figure out why. then try switching its entry for bandswitch selectors. the philips (#4) currently has: { 0xa0, 0x90, 0x30 } }, /* the band-switch values */ try replacing it with: { 0x02, 0x04, 0x01 } }, /* the band-switch values */ all this falls apart if I miguessed your choice of #4 as the desired entry. -- Steve Passe | powered by smp@csn.net | Symmetric MultiProcessor FreeBSD