Changeset 140

Show
Ignore:
Timestamp:
02/16/08 02:43:34 (10 months ago)
Author:
follower
Message:

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

Location:
branches/follower/libw5100
Files:
16 modified

Legend:

Unmodified
Added
Removed
  • branches/follower/libw5100/LICENSE.txt

    r139 r140  
    33The modifications and additions are licensed under the LGPL version 2 or later. 
    44 
     5(C) Copyright 2007-2008 
  • branches/follower/libw5100/README.txt

    r139 r140  
    3636Open a demo '.pde' to compile. 
    3737 
     38 
     39Author 
     40------ 
     41 
     42Philip Lindsay <follower@rancidbacon.com> 
     43 
     44 
    3845From the original driver README 
    3946------------------------------- 
  • branches/follower/libw5100/src/libw5100/connection.cpp

    r139 r140  
    44 
    55   High level socket instance wrapper 
     6 
     7   Author:  
     8 
     9      Philip Lindsay <follower@rancidbacon.com> 
     10 
     11   License: 
     12 
     13      Copyright 2007-2008 // LGPL 
    614 
    715*/ 
  • branches/follower/libw5100/src/libw5100/connection.h

    r139 r140  
    44 
    55   High level socket instance wrapper 
     6 
     7   Author:  
     8 
     9      Philip Lindsay <follower@rancidbacon.com> 
     10 
     11   License: 
     12 
     13      Copyright 2007-2008 // LGPL 
    614 
    715*/ 
  • branches/follower/libw5100/src/libw5100/interface.cpp

    r139 r140  
    88   connecting or listening Network Connection (representing a socket in either 
    99   client or server state). 
     10 
     11   Author:  
     12 
     13      Philip Lindsay <follower@rancidbacon.com> 
     14 
     15   License: 
     16 
     17      Copyright 2007-2008 // LGPL 
    1018 
    1119*/ 
  • branches/follower/libw5100/src/libw5100/interface.h

    r139 r140  
    44 
    55   Generic wrapper around a specific network device. 
     6 
     7   Author:  
     8 
     9      Philip Lindsay <follower@rancidbacon.com> 
     10 
     11   License: 
     12 
     13      Copyright 2007-2008 // LGPL 
    614 
    715*/ 
  • branches/follower/libw5100/src/libw5100/libw5100.h

    r139 r140  
    22  
    33   libw5100.h 
     4 
     5   Author:  
     6 
     7      Philip Lindsay <follower@rancidbacon.com> 
     8 
     9   License: 
     10 
     11      Copyright 2007-2008 // LGPL 
    412 
    513*/ 
  • branches/follower/libw5100/src/libw5100/socket.c

    r139 r140  
    11/* 
    2 * 
     2 
    33@file       socket.c 
    44@brief  setting chip register for socket 
    5 * 
     5 
     6   Original Author: 
     7 
     8      WIZnet Inc. 
     9 
    610*/ 
    711#include <avr/io.h> 
  • branches/follower/libw5100/src/libw5100/socket.h

    r139 r140  
    11/* 
    2 * 
     2 
    33@file       socket.h 
    44@brief  define function of socket API  
    5 * 
     5 
     6   Original Author: 
     7 
     8      WIZnet Inc. 
     9 
     10   Modifications by:  
     11 
     12      Philip Lindsay <follower@rancidbacon.com> 
     13 
     14   Modifications license: 
     15 
     16      Copyright 2007-2008 // LGPL 
     17 
    618*/ 
    719 
  • branches/follower/libw5100/src/libw5100/spi.cpp

    r139 r140  
    11/* 
    22 
    3   SPI Configuration 
     3   SPI Configuration 
    44 
    5   TODO: Enable multiple SPI devices to be controlled. 
     5   Author:  
     6 
     7      Philip Lindsay <follower@rancidbacon.com> 
     8 
     9   License: 
     10 
     11      Copyright 2007-2008 // LGPL 
     12 
     13 
     14   TODO: Enable multiple SPI devices to be controlled. 
    615 
    716*/ 
  • branches/follower/libw5100/src/libw5100/spi.h

    r139 r140  
    11/* 
    22 
    3   SPI Configuration 
     3   SPI Configuration 
     4 
     5   Author:  
     6 
     7      Philip Lindsay <follower@rancidbacon.com> 
     8 
     9   License: 
     10 
     11      Copyright 2007-2008 // LGPL 
    412 
    513*/ 
  • branches/follower/libw5100/src/libw5100/types.h

    r139 r140  
    11/* 
    2 * 
     2 
    33@file       type.h 
    4 * 
     4 
     5   Original Author: 
     6 
     7      WIZnet Inc. 
     8 
     9   Modifications by:  
     10 
     11      Philip Lindsay <follower@rancidbacon.com> 
     12 
     13   Modifications license: 
     14 
     15      Copyright 2007-2008 // LGPL 
     16 
    517*/ 
    618 
  • branches/follower/libw5100/src/libw5100/w5100.c

    r139 r140  
    11/* 
     2 
    23@file       w5100.c 
     4 
     5   Original Author: 
     6 
     7      WIZnet Inc. 
     8 
     9   Modifications by:  
     10 
     11      Philip Lindsay <follower@rancidbacon.com> 
     12 
     13   Modifications license: 
     14 
     15      Copyright 2007-2008 // LGPL 
     16 
    317*/ 
    418 
  • branches/follower/libw5100/src/libw5100/w5100.h

    r139 r140  
    11/* 
     2 
    23@file       w5100.h 
     4 
     5   Original Author: 
     6 
     7      WIZnet Inc. 
     8 
     9   Modifications by:  
     10 
     11      Philip Lindsay <follower@rancidbacon.com> 
     12 
     13   Modifications license: 
     14 
     15      Copyright 2007-2008 // LGPL 
     16 
    317*/ 
    418 
  • branches/follower/libw5100/src/libw5100/w5100_device.cpp

    r139 r140  
    22 
    33  W5100 device configuration 
     4 
     5  Author:  
     6 
     7     Philip Lindsay <follower@rancidbacon.com> 
     8 
     9  License: 
     10 
     11     Copyright 2007-2008 // LGPL 
    412 
    513*/ 
  • branches/follower/libw5100/src/libw5100/w5100_device.h

    r139 r140  
    22 
    33  W5100 device configuration 
     4 
     5  Author:  
     6 
     7     Philip Lindsay <follower@rancidbacon.com> 
     8 
     9  License: 
     10 
     11     Copyright 2007-2008 // LGPL 
    412 
    513*/