This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

IP Address of lpc2378

hi,
Can anyone tell me how to set IP address for ARM board lpc2378.
or is there a way to check the IP address of the board.

I want to communicate between PC and lpc2378 through ethernet, for that i need to know the IP address of lpc2378!!!

KINDLY HELP.
THANKS IN ADVANCE.

Gayathri.K

Parents
  • Hey,

    You can possibly set the IP address this way ,

    #define MYIP_1 192
    #define MYIP_2 168
    #define MYIP_3 10
    #define MYIP_4 100

    #define SUBMASK_1 255
    #define SUBMASK_2 255
    #define SUBMASK_3 255
    #define SUBMASK_4 0

    #define GWIP_1 192
    #define GWIP_2 168
    #define GWIP_3 10
    #define GWIP_4 254

    Parse these parameters to the EMAC driver.

    Regards,
    Samjith

Reply
  • Hey,

    You can possibly set the IP address this way ,

    #define MYIP_1 192
    #define MYIP_2 168
    #define MYIP_3 10
    #define MYIP_4 100

    #define SUBMASK_1 255
    #define SUBMASK_2 255
    #define SUBMASK_3 255
    #define SUBMASK_4 0

    #define GWIP_1 192
    #define GWIP_2 168
    #define GWIP_3 10
    #define GWIP_4 254

    Parse these parameters to the EMAC driver.

    Regards,
    Samjith

Children