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.
Hi Sergey,
You can read like this.
/** \brief Base address of SYS - Security ID register */
#define SOC_SYS_0_SECURITY_ID_REGS (0x01811000)
// Use the function, HWREG(SOC_SYS_0_SECURITY_ID_REGS ) and put it in a loop to read the 4K bytes.
unsigned int Data[1024];
unsigned int i = 0, j = 0;
for ( i = 0x0, j = 0; i <= 0x3FF; j += 0x04, i++ )
{
Data[i] = (unsigned int)HWREG(SOC_SYS_0_SECURITY_ID_REGS + j );
}
Hi Shankari,
Thank you for your response.
What is the structure of the data area "DSP Security ID" for TMS320C6746?
Regards,
Sergey
Hi Sergey,
I looked through the design specs for these portion of the memory map. These registers is a don't care for these family of devices.
They are internally tied off to do nothing. I am not sure why there were exposed in the memory map in documentation.
Regards
Mukul