Other Parts Discussed in Thread: C2000WARE
Tool/software:
Hello TI expert,
When enabled MPOST by change the OTP. And without HWBIST integrated in CPU1.
The MPOST test pass.
volatile uint32_t *MPOST_Result_Register = (uint32_t *)0x00000008;
The returned value of (*MPOST_Result_Register) == 0xFAABDEED
But after together with HWBIST test integrated in CPU1.
volatile uint32_t *MPOST_Result_Register = (uint32_t *)0x00000008;
We got the returned value of (*MPOST_Result_Register) == 0xFF692902
Which is not list in C:\ti\c2000\C2000Ware_5_01_00_00\libraries\boot_rom\f28P65x\rev0\rom_sources\cpu1\F28P65x_ROM\bootROM\include\cpu1brom_pbist.h
Question: What is meaning of this returned value?
And why this happen?