Michael Andersen wrote: > Christophe Massiot wrote: > >> On Tue, Jul 19, 2005, Michael Andersen wrote: >> >> >> >>> I've been trying to get the radio working on my new 500mce, but I'm >>> not getting any sound. >>> >> >> >> Could you try the following patch ? It seems logical from my previous >> experience with LG TAPE tuners, but I can't test it. Report if it works. >> >> >> > > Doesn't work :( >
I've been looking a little more into this - I tried the patch you posted here: http://www.gossamer-threads.com/lists/ivtv/devel/22462 It didn't help, I think because that's not the tuner I have. Then I tried to move the line with my tuner down to the section you've added, so it looks like this: case TUNER_PHILIPS_FQ1216AME_MK4: case TUNER_LG_PAL_TAPE_S001D: div = ((freq * 62500) + 10700000) / 50000; if (freq < t->freq) { buffer[0] = 0x80; buffer[1] = 0x19; buffer[2] = (div >> 8) & 0x7f; buffer[3] = div & 0xff; } else { buffer[0] = (div >> 8) & 0x7f; buffer[1] = div & 0xff; buffer[2] = 0x80; buffer[3] = 0x19; } break; That didn't work either... All I get is static. One thing though... When I use the utils/radio tool to tune in the station - it sets the audio input to 4, and there's no sound. When I manually change the input to 1 (ivtvctl -q 1) I get the static. I don't know if any of my attempts make any sense... I'm new at this ivtv-stuff, so I may be shooting flies with a shotgun here, but I don't know what else to do. Anyway - does anyone have some detailed specifications on this particular card? some datasheets or anything? I would like to know more about how this card really works. I'm also into electronics, so spare no details :) /Miwer ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ ivtv-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ivtv-devel
