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.