TI give a demo of creating a web server :
//
// Main Thread
//
// We changed our CDB file to point call this private init
// function. Here we initialize our board and read in our
// MAC address.
//
void dm642_init()
{
// Init cache mode manually
CSL_init();
CACHE_clean(CACHE_L2ALL, 0, 0);
CACHE_setL2Mode(CACHE_128KCACHE);
CACHE_enableCaching(CACHE_EMIFA_CE00);
CACHE_enableCaching(CACHE_EMIFA_CE01);
bMacAddr[0]='D'; bMacAddr[1]=4;
bMacAddr[2]='A'; bMacAddr[3]=1;
bMacAddr[4]='Z'; bMacAddr[5]=1;
memcpy(IP_MAC,bMacAddr,6);
}
every time start the system, the code run.
TI gives DM642 a MAC adress of "D:4:A:1:Z:1",can we change this MAC address?
if we can , how we can change this?