root/branches/follower/libw5100/README.txt

Revision 140 (checked in by follower, 6 months ago)

Add author, license and copyright details. (Which weren't permitted in competition entry source.)

Line 
1
2 WIZnet W5100 / WIZ810MJ Hardwired TCP/IP Ethernet Chip/Module Driver for Arduino
3 ================================================================================
4
5 For more information see:
6
7   <http://code.rancidbacon.com/Netduino/>
8
9 Based on the W5100 driver from WIZnet.
10
11
12 Installation and Building
13 -------------------------
14
15 Arduino will compile the library automatically if you put the correct
16 files in the library directory of the Arduino application.
17
18 If you are installing this library you should put the files
19 from the directory named 'src/libw5100/' in the Arduino library directory.
20 It will be compiled automatically within the IDE.
21
22 For Arduino version 0010 the library directory location is:
23
24   <ARDUINO>/hardware/libraries/
25
26 For Ardino version 0009 the library directory location was:
27
28   <ARDUINO>/lib/targets/libraries/
29
30 If you want to compile the library manually you can use the following:
31
32   avr-gcc -mmcu=atmega168 -Wall -Os -fsigned-char -combine -c socket.c w5100.c -o wiz810mj.o
33
34   avr-strip --strip-debug --strip-unneeded -X -x *.o
35
36 Open a demo '.pde' to compile.
37
38
39 Author
40 ------
41
42 Philip Lindsay <follower@rancidbacon.com>
43
44
45 From the original driver README
46 -------------------------------
47
48 (You're almost certainly not going to need this.)
49
50 + How to Change the interface mode
51   Change the value of the __DEF_IINCHIP_BUS__ in the types.h file.
Note: See TracBrowser for help on using the browser.