I try to get the MAC address of DM642. Is there any library call can be used to get the MAC address? Can anyone show me the software segment to resolve the problem?
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I believe the MAC address of a DM642 (at least the EVM) is stored in an external EEPROM, so you could use the BSL's EVMDM642_EEPROM_read() function to access the MAC address. The below example call is taken from the examples\video_networking\jpeg_netcam\src\network\dm642init.c file. This value is then taken and passed into the NDK to set the IP address.
EVMDM642_EEPROM_read(0x00007F00, (Uint32)bMacAddr, 8);
Is the TI DSP (e.g. DM642) embedded with a MAC address? The EVM is a board by TI. This board has a MAC address stored in an external EEPROM. I wonder the individual DSP has a MAC address. If the answer is yes, how to read MAC address from the DSP.
Ming