Tool/software:
Hello TI,
I am facing one issue with Onsemi AR0820 Leopard camera integration with FPD Link IV (J7EXPAXEVM) board using TDA4H EVM. Prior to that I was using FPD Link III board for our developments and AR0820 Leopard camera works well with that.
With FPD Link IV board am getting "CAPTURE: ERROR: Incomplete frame for Ch0!!!" error and getting garbage data in the display.
Interestingly AR0820 MARS camera works well with FPD Link IV fusion board2.
When I discussed this with my hardware team, they mentioned that both MARS and Leopard uses same serializer.
Note:
Board ID is not programmed for Fusion2 so it didn't detect automatically.
As per TI suggestion, I have modified as below in Sensor_DeserializerInit() in imaging/sensor_drv/src/iss_sensors.c
///
bDet = Board_detectBoard(BOARD_ID_FUSION2)
if(1)
{
issLogPrintf("Fusion2 Board Detected, using Fusion2 configuration\n");
gFusionDet = vx_true_e;
}
else
{
issLogPrintf("Fusion1 Board configuration\n");
gFusionDet = vx_false_e;
}
///
Please help me to resolve this issue.
Thanks and Regards,
Vineeth