Other Parts Discussed in Thread: TVP7002
Hi all,
When I try to run Appro 2.6 on DM368 development board I meet some problem.We use the TVP7002 chip as input.
But it can't work well ,it stop at DRV_isifWaitInt().
---------------------------------------------------------------------------------------------------------
int DRV_captureStart(Bool rawOutEnable, Bool yuvOutEnable) { #ifdef DRV_SHOW_INFO OSA_printf(" CAPTURE: Starting IPIPE.\n"); #endif DRV_ipipeEnable(yuvOutEnable, TRUE, TRUE, TRUE); #ifdef DRV_SHOW_INFO OSA_printf(" CAPTURE: Starting ISIF.\n"); #endif if(rawOutEnable) DRV_isifOutEnable(TRUE); DRV_isifEnable(TRUE); #ifdef DRV_SHOW_INFO OSA_printf(" CAPTURE: Starting imager.\n"); #endif DRV_imgsEnable(TRUE); DRV_isifWaitInt(DRV_ISIF_INT_VD0, 2); //////////////////////////hang up here!!!!!!!!!!!!!!!!!!!!!!!!!!! #ifdef DRV_SHOW_INFO OSA_printf(" CAPTURE: Starting H3A.\n"); #endif DRV_h3aEnable(DRV_H3A_MOD_AF, TRUE); /*AF Change*/ DRV_h3aEnable(DRV_H3A_MOD_AEWB, TRUE); #ifdef DRV_SHOW_INFO OSA_printf(" CAPTURE: Start DONE.\n"); #endif return OSA_SOK; } Anyone who know what the problem is ? Regards -Gordon