Other Parts Discussed in Thread: HALCOGEN
Hi Team,
Could see that from manual for single bit Flash ecc tests, we can use any range of values in mirrored region. So, we declared a variable in flash as below:
const Uint32 flash_parity = 0xA5A5A5A5UL;
volatile Uint32* const flash_addr = (Uint32 *)(0x20000000UL+(Uint8*)(&flash_parity));
With this address, flash ecc tests fails. Can we declare a variable and test like above for single bit and multi bit ecc for flash? Could see that from halcogen generated code, it uses 0x20000000 address which usually contains c_int entry address.
Please confirm.