|
Revision 140, 436 bytes
(checked in by follower, 11 months ago)
|
|
Add author, license and copyright details. (Which weren't permitted in competition entry source.)
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | |
|---|
| 3 | libw5100.h |
|---|
| 4 | |
|---|
| 5 | Author: |
|---|
| 6 | |
|---|
| 7 | Philip Lindsay <follower@rancidbacon.com> |
|---|
| 8 | |
|---|
| 9 | License: |
|---|
| 10 | |
|---|
| 11 | Copyright 2007-2008 // LGPL |
|---|
| 12 | |
|---|
| 13 | */ |
|---|
| 14 | |
|---|
| 15 | #ifndef _LIBW5100_H_ |
|---|
| 16 | #define _LIBW5100_H_ |
|---|
| 17 | |
|---|
| 18 | // New object wrapper interface |
|---|
| 19 | #include "spi.h" |
|---|
| 20 | #include "w5100_device.h" |
|---|
| 21 | #include "connection.h" |
|---|
| 22 | #include "interface.h" |
|---|
| 23 | |
|---|
| 24 | // TODO: Allow this to be changed in the main program, but use default otherwise. |
|---|
| 25 | // WIZnet module /RESET |
|---|
| 26 | #define PIN_RESET 9 |
|---|
| 27 | |
|---|
| 28 | #endif |
|---|