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.

DM8127 RDK3.8没有H3A中断问题



我详细说下DM8127的RDK3.8 中H3A处理的 正常具体流程是:
   1. drvIspCallback MSP_DATA_EVENT:MSP_ISS_DRV_H3A_END_ISR
   2. IssAlg_capt2AIsrCallBack
   3. IssAlg_captTsk2A
   
   IssAlg_captTsk2A 因为没有产生中断,堵塞在那里。

这个是什么原因导致的?

  • 你好,

    请问你在编译IPNC的时候是否在Rules.make里面使能了WDR?如果是,能否不使能WDR再尝试?

    注意,使能WDR是会关闭AE的。

    ipnc_rdk/ipnc_app/sys_server/src/stream_env_ctrl.c

    #ifdef WDR_ON_MODE /* Switch OFF AE */
        if(pConfig -> nAEWtype&1) {
            pConfig -> nAEWtype &= 2;
            fSetImageAEWType(pConfig -> nAEWtype);
        }
    #endif

  • 你好,

    同文件里面还有另外一处相关代码:

    int SetImageAEWType(unsigned char value)/*img2a*/
    {
    。。。
    #ifdef WDR_ON_MODE /* Switch OFF AE */
        if(value&1) {
            value &= 2;
        }
    。。。
    }