Ohta Kyuma wrote: > > Hello, > > Written by Gunther.Mayer@xxxxxxxxxxx (Gunther Mayer) > at Wed, 28 Aug 2002 19:54:31 +0200 : > Subject: Re: [SAA7134] Status of Monster TV (1), tuner?? ... > Mayer> Do you have a clear picture in windows? > > Yes. > Why clear, Japanese VHF band not use (about) 108-170Mhz. > > Below is *ABOUT* Frequency of Japanese TV band; > VHF-LOW : 90-108 > VHF-HIGH: 175-225 > > So, in Japan, this parameter is effective a coincidence :-( > > But, in Japan, configuration setting of tuner is more important than > frequency. > On setting of TUNER 2 or 17 ( a0,30,90) , VHF is not receive, > and UHF is very low gain. > On this setting ( at path: 40), gain is okay...but configuration > of UHF is 04 more stable. I see. Your entry is for the new Philips MK3 series! Does this work perfect ? Including FM radio? --- tuner.c-0796 Thu Aug 29 18:07:11 2002 +++ tuner.c Thu Aug 29 18:06:11 2002 @@ -225,6 +225,9 @@ 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,623 }, { "LG NTSC (newer TAPC series)", LGINNOTEK, NTSC, 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,732}, + { "Philips NTSC MK3 (FM1236MK3 or FM1236/F)", Philips, NTSC, + 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 }, + }; #define TUNERS (sizeof(tuners)/sizeof(struct tunertype)) @@ -760,6 +763,7 @@ buffer[2] = tun->config; switch (t->type) { case TUNER_PHILIPS_FM1216ME_MK3: + case TUNER_PHILIPS_FM1236_MK3: buffer[3] = 0x19; break; default: --- tuner.h-0796 Thu Aug 29 18:08:05 2002 +++ tuner.h Thu Aug 29 18:05:14 2002 @@ -64,6 +64,7 @@ #define TUNER_LG_PAL_NEW_TAPC 37 #define TUNER_PHILIPS_FM1216ME_MK3 38 #define TUNER_LG_NTSC_NEW_TAPC 39 +#define TUNER_PHILIPS_FM1236_MK3 40