This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MIDAS display of OMAP 3530

Other Parts Discussed in Thread: MIDAS, OMAP3530

Hi

I am new to OMAP3530. with reference to the below DIsplay code in MIDAS v4.0 

#ifdef CAPTURE_OUTPUT
FILE * file;
char fname[120];
if (frmNmbr < 30)
{
char *p = (unsigned char *)Buffer_getUserPtr(hSrcBuf);
if (p)
{
//sprintf(fname,"outputfr%03d.bin",frmNmbr);
sprintf(fname,"outputfr.bin");
file = fopen(fname, "a");
if (file!=NULL)
{
fwrite(p, 1, 640*480*2, file);
}
fclose(file);
}
}
#endif

Can anyone guide me where do i find outputf.bin file in OMAP3530 file system.