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.

What is this (Register?) Address on the DM8127 Resizer?



I've been experiementing with an omnivision OV10630 sensor with the DM8127 IPNC Camera.  We keep getting Resizer Error Codes and I've tracked it down the the issdrv_captureApi.c file.  Unfortunately I have found the following causing our error:

    Int32 rsz_err = *(MSP_U32 *) (0x55050024);
    if (rsz_err & 0xc0000)
    {
        Vps_rprintf("\r\n\t##################### REISZER OVERFLOW OCCURED: RESTARTING...############################\n\r");
        isp_reset_trigger = 1;
    }

The problem is that I cannot find any documentation relating to this address 0x55050024 which appears to be a register, nor do I know what the code 0xc0000 means in that register other than there is an error.  Do you have any ideas what this address/register is, and any definitions of its bits?  (And, yes, the misspelled message is literally what is in the file.)

Thanks,