Hi All,
I'm using the CMSIS network component on STM32F407. To set a right MAC I'm reading it from external I2C EEprom and then I need to change the MAC of the system... Can't find any function to do this, only can see the #defines in the Net_Config_ETH_0.h but, obviously can't use it.
Thanks
My project works ok with the RL-TCP library
Right. So the link I gave applies. I've used the same thing.
Hi
Solved.. thanks M Lurthurd :)
Finally the code looks like this:
extern ETH_CFG eth0_config; GetMACFromEEprom (); memcpy (eth0_config.MacAddr, SystemData.MAC, 6); net_initialize ();
The MAC is changed ok.
Thanks again.