Coder Social home page Coder Social logo

Comments (6)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
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 [email protected] on 18 Jan 2012 at 10:52

from arduino-tvout.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
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 [email protected] on 25 Jun 2012 at 1:36

  • Changed state: Accepted

from arduino-tvout.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
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 [email protected] on 26 Nov 2013 at 1:38

from arduino-tvout.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
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 [email protected] on 25 Feb 2014 at 7:23

from arduino-tvout.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
and yes. I had a PAL signal.

Original comment by [email protected] on 25 Feb 2014 at 7:24

from arduino-tvout.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 4, 2024
Works like a charm.

Original comment by [email protected] on 2 Aug 2014 at 11:21

from arduino-tvout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.