Hi
I am just starting with Ethernet on the Concerto MCU using the enet_lwip example.
I am going crazy for changing the default MAC number to the real MAC number corresponding to my actual board.
I tried:
- In Propierties->Debug->Flash settings you can change the MAC but doesn't take effect when you build and execute.
- Use the funcion EthernetMACAddrSet(ETH_BASE, (unsigned char *)pucMAC); doesn´t take effect.
- Directly write
HWREG(SYSCTL_MWRALLOW) = 0xA5A5A5A5;
HWREG(0x00680810) = 0x00F263A8;
HWREG(0x00680814) = 0x00800000;
neither takes effect.
I watch the OTP memory using the Memory browser and the value at 0x00680810 and 0x00680814 is always 0xFFFFFFFF
What is the right way to really change the MAC address at the OTP memory?
Thanks so much
Dionisio

