Open GoogleCodeExporter opened 9 years ago
i also had this issue with the TVOutBeta1... [ i couldn't get the earlier
versions to sync at all ]
i can confirm that employing jon's fix detailed above corrected the issue for
me.
Original comment by i...@ushtey.com
on 18 Jan 2012 at 10:52
The vertical sync is messed up regardless of NTSC or PAL, I have made some
improvements to NTSC but i haven't tried with PAL yet. Don't expect anything
to soon however...
Original comment by mdmetzle@gmail.com
on 25 Jun 2012 at 1:36
I have fixed the v-Sync-problem in the video_gen.cpp on line 98
original:
void vsync_line() {
if (display.scanLine >= display.lines_frame) {
OCR1A = _CYCLES_VIRT_SYNC;
display.scanLine = 0;
Fixed:
void vsync_line() {
if (display.scanLine >= display.lines_frame) {
OCR1A = _CYCLES_VIRT_SYNC;
display.scanLine = -1;
Original comment by lerrypag...@gmail.com
on 26 Nov 2013 at 1:38
Hello! I had the same problem. arduino nano 328p (Chinese copy) and ebay rear
camera display. Vertical sync was not working and the image was scrolling down.
I changed this and it works! 2 days to go. The right TV, the image function
properly, but here little 4, 3 inch, it will not begin operating
"
I have fixed the v-sync problem in the video_gen.cpp line 98
original:
void vsync_line () {
if (display.scanLine> = display.lines_frame) {
OCR1A = _CYCLES_VIRT_SYNC;
display.scanLine = 0;
Fixed:
void vsync_line () {
if (display.scanLine> = display.lines_frame) {
OCR1A = _CYCLES_VIRT_SYNC;
display.scanLine = -1;
"
Original comment by Jonne.Ta...@gmail.com
on 25 Feb 2014 at 7:23
and yes. I had a PAL signal.
Original comment by Jonne.Ta...@gmail.com
on 25 Feb 2014 at 7:24
Works like a charm.
Original comment by philkazi...@gmail.com
on 2 Aug 2014 at 11:21
Original issue reported on code.google.com by
jon.lang...@gmail.com
on 15 May 2011 at 4:05