Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
10 years, 2 months ago.
ethernet
I need to use rj45 Ethernet socket (Pulse Jack, J00-0045NL) for my project but I am not using mbed application board I need to connect Pulse Jack, J00-0045NL to LPC1768 can u help me with the physical connection please.
Question relating to:
1 Answer
10 years, 2 months ago.
you need to connect ethernet pins of lpc1768( Rd+ Rd- Td+ and Td- )to the pulse jack. the physical connection can be found on the following link : http://developer.mbed.org/cookbook/RFID-Tweeter
as far as software is concerned you need to import standard ethernet libraries (there are many ethernet libraries for lpc1768). and write a basic test program
EthernetInterface eth; eth,init(); eth.connect(); printf("connected, ip address is %s",eth.getIPAddress());