diff --git a/branches/follower/libw5100/LICENSE.txt b/branches/follower/libw5100/LICENSE.txt index 5193721..55d2a28 100644 --- a/branches/follower/libw5100/LICENSE.txt +++ b/branches/follower/libw5100/LICENSE.txt @@ -2,3 +2,4 @@ The original license of the WIZnet supplied vendor code is unknown. The modifications and additions are licensed under the LGPL version 2 or later. +(C) Copyright 2007-2008 \ No newline at end of file diff --git a/branches/follower/libw5100/README.txt b/branches/follower/libw5100/README.txt index 9834442..de55489 100644 --- a/branches/follower/libw5100/README.txt +++ b/branches/follower/libw5100/README.txt @@ -35,6 +35,13 @@ If you want to compile the library manually you can use the following: Open a demo '.pde' to compile. + +Author +------ + +Philip Lindsay + + From the original driver README ------------------------------- diff --git a/branches/follower/libw5100/src/libw5100/connection.cpp b/branches/follower/libw5100/src/libw5100/connection.cpp index cf9f0ea..7aab432 100644 --- a/branches/follower/libw5100/src/libw5100/connection.cpp +++ b/branches/follower/libw5100/src/libw5100/connection.cpp @@ -4,6 +4,14 @@ High level socket instance wrapper + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #include "connection.h" diff --git a/branches/follower/libw5100/src/libw5100/connection.h b/branches/follower/libw5100/src/libw5100/connection.h index 81755ac..26a9245 100644 --- a/branches/follower/libw5100/src/libw5100/connection.h +++ b/branches/follower/libw5100/src/libw5100/connection.h @@ -4,6 +4,14 @@ High level socket instance wrapper + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #ifndef _CONNECTION_H_ diff --git a/branches/follower/libw5100/src/libw5100/interface.cpp b/branches/follower/libw5100/src/libw5100/interface.cpp index 101f004..ee427fd 100644 --- a/branches/follower/libw5100/src/libw5100/interface.cpp +++ b/branches/follower/libw5100/src/libw5100/interface.cpp @@ -8,6 +8,14 @@ connecting or listening Network Connection (representing a socket in either client or server state). + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #include "interface.h" diff --git a/branches/follower/libw5100/src/libw5100/interface.h b/branches/follower/libw5100/src/libw5100/interface.h index 4e00e97..8c21538 100644 --- a/branches/follower/libw5100/src/libw5100/interface.h +++ b/branches/follower/libw5100/src/libw5100/interface.h @@ -4,6 +4,14 @@ Generic wrapper around a specific network device. + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #ifndef _INTERFACE_H_ diff --git a/branches/follower/libw5100/src/libw5100/libw5100.h b/branches/follower/libw5100/src/libw5100/libw5100.h index 105c6a4..6828e74 100644 --- a/branches/follower/libw5100/src/libw5100/libw5100.h +++ b/branches/follower/libw5100/src/libw5100/libw5100.h @@ -2,6 +2,14 @@ libw5100.h + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #ifndef _LIBW5100_H_ diff --git a/branches/follower/libw5100/src/libw5100/socket.c b/branches/follower/libw5100/src/libw5100/socket.c index 442f86f..fc433d6 100644 --- a/branches/follower/libw5100/src/libw5100/socket.c +++ b/branches/follower/libw5100/src/libw5100/socket.c @@ -1,8 +1,12 @@ /* -* + @file socket.c @brief setting chip register for socket -* + + Original Author: + + WIZnet Inc. + */ #include #include diff --git a/branches/follower/libw5100/src/libw5100/socket.h b/branches/follower/libw5100/src/libw5100/socket.h index 98ba2f1..d233c83 100644 --- a/branches/follower/libw5100/src/libw5100/socket.h +++ b/branches/follower/libw5100/src/libw5100/socket.h @@ -1,8 +1,20 @@ /* -* + @file socket.h @brief define function of socket API -* + + Original Author: + + WIZnet Inc. + + Modifications by: + + Philip Lindsay + + Modifications license: + + Copyright 2007-2008 // LGPL + */ #ifndef _SOCKET_H_ diff --git a/branches/follower/libw5100/src/libw5100/spi.cpp b/branches/follower/libw5100/src/libw5100/spi.cpp index d3438f7..b4d32ec 100644 --- a/branches/follower/libw5100/src/libw5100/spi.cpp +++ b/branches/follower/libw5100/src/libw5100/spi.cpp @@ -1,8 +1,17 @@ /* - SPI Configuration + SPI Configuration - TODO: Enable multiple SPI devices to be controlled. + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + + + TODO: Enable multiple SPI devices to be controlled. */ diff --git a/branches/follower/libw5100/src/libw5100/spi.h b/branches/follower/libw5100/src/libw5100/spi.h index 107cafb..d32576d 100644 --- a/branches/follower/libw5100/src/libw5100/spi.h +++ b/branches/follower/libw5100/src/libw5100/spi.h @@ -1,6 +1,14 @@ /* - SPI Configuration + SPI Configuration + + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL */ diff --git a/branches/follower/libw5100/src/libw5100/types.h b/branches/follower/libw5100/src/libw5100/types.h index 2ebb539..f818e49 100644 --- a/branches/follower/libw5100/src/libw5100/types.h +++ b/branches/follower/libw5100/src/libw5100/types.h @@ -1,7 +1,19 @@ /* -* + @file type.h -* + + Original Author: + + WIZnet Inc. + + Modifications by: + + Philip Lindsay + + Modifications license: + + Copyright 2007-2008 // LGPL + */ #ifndef _TYPE_H_ diff --git a/branches/follower/libw5100/src/libw5100/w5100.c b/branches/follower/libw5100/src/libw5100/w5100.c index aeb5a7b..9621670 100644 --- a/branches/follower/libw5100/src/libw5100/w5100.c +++ b/branches/follower/libw5100/src/libw5100/w5100.c @@ -1,5 +1,19 @@ /* + @file w5100.c + + Original Author: + + WIZnet Inc. + + Modifications by: + + Philip Lindsay + + Modifications license: + + Copyright 2007-2008 // LGPL + */ #include diff --git a/branches/follower/libw5100/src/libw5100/w5100.h b/branches/follower/libw5100/src/libw5100/w5100.h index e87be4c..5b402e5 100644 --- a/branches/follower/libw5100/src/libw5100/w5100.h +++ b/branches/follower/libw5100/src/libw5100/w5100.h @@ -1,5 +1,19 @@ /* + @file w5100.h + + Original Author: + + WIZnet Inc. + + Modifications by: + + Philip Lindsay + + Modifications license: + + Copyright 2007-2008 // LGPL + */ #ifndef _W5100_H_ diff --git a/branches/follower/libw5100/src/libw5100/w5100_device.cpp b/branches/follower/libw5100/src/libw5100/w5100_device.cpp index 6fec945..9b61ca6 100644 --- a/branches/follower/libw5100/src/libw5100/w5100_device.cpp +++ b/branches/follower/libw5100/src/libw5100/w5100_device.cpp @@ -2,6 +2,14 @@ W5100 device configuration + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #include "w5100_device.h" diff --git a/branches/follower/libw5100/src/libw5100/w5100_device.h b/branches/follower/libw5100/src/libw5100/w5100_device.h index 1404fb0..4797908 100644 --- a/branches/follower/libw5100/src/libw5100/w5100_device.h +++ b/branches/follower/libw5100/src/libw5100/w5100_device.h @@ -2,6 +2,14 @@ W5100 device configuration + Author: + + Philip Lindsay + + License: + + Copyright 2007-2008 // LGPL + */ #ifndef _W5100_DEVICE_H_