Dear all,
Just a Follow up on my previous, I finally manage to have my Sony SRV-2000 (with original NTSC tuner) fully working in PAL-N.
This was actually due to 2 issues, the frequncies boundaries (143000 and 380000, instead of 170000 and 450000 of the PALBG Samsung), and that I was missing some channels in my lineup (easily solved with the add-whole-channel.tlc)I can only get 1/3 of my local channels (I need to find the correct frecuency range for VHF-L/H and UHF for this NTSC tuner),
This took me longer, until I learned what I needed to send to the mps3430G.I have no audio at all,
I also needed to change the slave mode of the chip to detect PAL-n sound:Code:#define BTSC_Stereo 0x0020 // NTSC and PAL-N standard #define BTSC_Mono 0x0021 // NTSC and PAL-N standard
iicw4(MSP_CHIP, WRITE_DEMOD, MODE | 0x2018); // set device to slave mode 100000
This one drove me crazy !!!! I've a DELL monitor with video input and it was corectly showing the color image, the info screen stated PAL@50hz.and the PAL-N composite output from the Tivo Looks bad (B&W) in some of my TVs).
But my TV was showing a B&W image with red and blue bars. The TV is NTSC/PAL-N/PAL-M capable.
After a while of playing with the SAA7120/1 datasheet (and monking with diferent settings and addresses), I realized that the key was in addresses 63/64/65/66. But the examples are for NTSC and PAL-BG ... no PAL-N.
Thanks to the wikipedia i was able to understand what this was about, and This outdated datasheet gave me the last piece of the puzle.
this worked right away !!!!Code:iicw1(VIDEO_ENCODER, 0x63, 0x1e); iicw1(VIDEO_ENCODER, 0x64, 0x94); iicw1(VIDEO_ENCODER, 0x65, 0xf6); iicw1(VIDEO_ENCODER, 0x66, 0x21);
So, now my NTSC tuner can tune to ARGentinean frecuencies in PAL-N, has corect color and audio, and same for the output.
Thanks a LOT to everyone that work on the palmod and the rest of the Hack that allowed me to do this !!!!!
Bookmarks