Altera_Forum
Honored Contributor
15 years agoVIP lcd demo
Hello there!
I am trying to run the demonstration I downloaded from there: http://www.nioswiki.com/Nios2EmbeddedEvaluationKit/Altera's_Video_and_Image_Processing_Suite_Demo_on_the_NEEK I cannot say it does not work, actually it does something. However, there is absolutely no interactivity with the source code provided. In the main.c, there is a loop which (I suppose) should provide some interactivity. But this loop is never reached. When I set breakpoints, I can go step by step until Mixer_init(); This starts the video display, but that's the last function I can step over. If I try to step into one of the functions after this line, the debugger seems to be lost. Basically what I would like to do first is: - Have some interactivity (draw menus, etc), and have actions caused by these menus; - Grab a frame's data buffer; - Do some processing on it. Some questions: - What is the minimal configuration? If I comment out the lines Clipper_init() or Scaler_init() that are before Mixer_init(), then the image does not show. But I don't need a scaler and a clipper. - Is there some free IP with full source code around? For instance showing hot to get an interrupt, read a frame from some memory buffer, return a pointer to it, etc, working on NIOS? The problem with the prebuilt elements is that there is no access to the source code. I would be happy to know for instance, what is in Mixer_init(). Well, I know that it's a wrapper function managing an object, but I would like to know what exactly happens in the object itself. Thanks. By the way, could somebody at Altera filter the irrelevant comments at this link: http://www.nioswiki.com/Nios2EmbeddedEvaluationKit/Altera's_Video_and_Image_Processing_Suite_Demo_on_the_NEEK Pascal