Hi. I want to change MAC address in Client demo program. I tried to change it via registers:
volatile UINT32 *MACID_1 = (UINT32 *) 0x02620110;
volatile UINT32 *MACID_2 = (UINT32 *) 0x02620114;
/* To Unlock */
(*(unsigned int*)(0x02620000 + 0x0038)) = (0x83E70B13);
(*(unsigned int*)(0x02620000 + 0x003C)) = (0x95A4F1E0);
*MACID_1 = 0xCCDDEEFF;
*MACID_2 = 0x0000AABB;
platform_get_emac_info(0, &emac);
But it didn't change.
I want in my project use the IP Stack from Client project, but i need to change MAC address.
How can i do that?
Thanks.