Hi,all
We are using DM8127 IPNC to develop a snapshot camera,and I want to config the dm8127 isp to invoke 2 interrupts while receive a frame, that means I want to invoke the vdint1 on the middle of the frame, and invoke the vdint0 at the end of the frame.
I checked the DM8127 IPNC source code,and find the following code in the Iss_captCreate function:
tCallbackRegCfg.eInterruptId = MSP_ISS_DRV_ISIF_VD_ISR;
eMSP = MSP_ISP_config(gIss_captCommonObj.pModuleInstance->hIspHandle,
(MSP_INDEXTYPE) MSP_ISP_CFG_REG_CALLBACK,&tCallbackRegCfg);
isif_reg->VDINT0 = isif_reg->VDINT1 = isif_reg->VDINT2 = pObj->createArgs.scParams[0].inHeight - 5;
*(MSP_U32 *) (0x5505002C) |= 1; // isp IRQ set register
In the code,we can see all the three interrupts(vdint0,vdint1,vdint2) have been configed,buf only the vdint0 is enabled,this should be the function of the 0x5505002C register.
so I want to konw if i want to enable vdint1 interrupt, how can I write the 0x5505002C register? I can't find the detailed description of the register.
Thank you very much!