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.

TMS320F28377D: Is these code right for reading RESC at RAM 0x002C

Part Number: TMS320F28377D

Hi Team,

My customer use the code below to read RESC at RAM 0x002C:

Fullscreen
1
2
3
4
5
6
7
8
9
#define BOOTSTATUS 0x0000002C
Uint16 *pusCPU01BufferPt; //
Uint32 *BOOTSTAT;
BOOTSTAT = (Uint32 *)BOOTSTATUS;
pusCPU01BufferPt[15] = ((*BOOTSTAT)>>16); //
pusCPU01BufferPt[16] = *BOOTSTAT;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Does these code work properly for reading reset source which stored by BOOT ROM?

Thanks & Regards,

Yale Li