hello dear,
actually i dont want to work on other layers of tcp/ip i am just trying to implement the phy layer and mac layer,now i got the packet ,i am able to receive packet on the other board but there is a lil bit problem,my tx packet is
unsigned char pucMyTxPacket[14] = {0x01,0x23,0x45,0x67,0x89,0xAB,'e','m','b','e','d','d','e','d'};
and i am getting RxPacket[100] = {,0x89,0xAB,'e','m','b','e','d','d','e','d}
the first 6 bytes are my destination mac address and here in my receiving packet i am getting the last two bytes of mac address...but i just want to get my packet or information without mac address...can i receive only "{'e','m','b','e','d','d','e','d} " on my receiving end if yes then how?????