LineLedControl

Dependencies:   LPD8806 mbed

Fork of LPD8806_Test by Jelmer Tiete

Committer:
sfjmt
Date:
Mon Aug 19 12:14:37 2013 +0000
Revision:
3:b0a1b4b24d3c
LPD8806 control

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sfjmt 3:b0a1b4b24d3c 1 /*
sfjmt 3:b0a1b4b24d3c 2 * Copyright (c) 2001, Swedish Institute of Computer Science.
sfjmt 3:b0a1b4b24d3c 3 * All rights reserved.
sfjmt 3:b0a1b4b24d3c 4 *
sfjmt 3:b0a1b4b24d3c 5 * Redistribution and use in source and binary forms, with or without
sfjmt 3:b0a1b4b24d3c 6 * modification, are permitted provided that the following conditions
sfjmt 3:b0a1b4b24d3c 7 * are met:
sfjmt 3:b0a1b4b24d3c 8 * 1. Redistributions of source code must retain the above copyright
sfjmt 3:b0a1b4b24d3c 9 * notice, this list of conditions and the following disclaimer.
sfjmt 3:b0a1b4b24d3c 10 * 2. Redistributions in binary form must reproduce the above copyright
sfjmt 3:b0a1b4b24d3c 11 * notice, this list of conditions and the following disclaimer in the
sfjmt 3:b0a1b4b24d3c 12 * documentation and/or other materials provided with the distribution.
sfjmt 3:b0a1b4b24d3c 13 * 3. Neither the name of the Institute nor the names of its contributors
sfjmt 3:b0a1b4b24d3c 14 * may be used to endorse or promote products derived from this software
sfjmt 3:b0a1b4b24d3c 15 * without specific prior written permission.
sfjmt 3:b0a1b4b24d3c 16 *
sfjmt 3:b0a1b4b24d3c 17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
sfjmt 3:b0a1b4b24d3c 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sfjmt 3:b0a1b4b24d3c 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sfjmt 3:b0a1b4b24d3c 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
sfjmt 3:b0a1b4b24d3c 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sfjmt 3:b0a1b4b24d3c 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sfjmt 3:b0a1b4b24d3c 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sfjmt 3:b0a1b4b24d3c 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sfjmt 3:b0a1b4b24d3c 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sfjmt 3:b0a1b4b24d3c 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sfjmt 3:b0a1b4b24d3c 27 * SUCH DAMAGE.
sfjmt 3:b0a1b4b24d3c 28 *
sfjmt 3:b0a1b4b24d3c 29 * This file is part of the lwIP TCP/IP stack.
sfjmt 3:b0a1b4b24d3c 30 *
sfjmt 3:b0a1b4b24d3c 31 * Author: Adam Dunkels <adam@sics.se>
sfjmt 3:b0a1b4b24d3c 32 *
sfjmt 3:b0a1b4b24d3c 33 */
sfjmt 3:b0a1b4b24d3c 34 #ifndef __NETIF_SLIPIF_H__
sfjmt 3:b0a1b4b24d3c 35 #define __NETIF_SLIPIF_H__
sfjmt 3:b0a1b4b24d3c 36
sfjmt 3:b0a1b4b24d3c 37 #include "lwip/netif.h"
sfjmt 3:b0a1b4b24d3c 38
sfjmt 3:b0a1b4b24d3c 39 #ifdef __cplusplus
sfjmt 3:b0a1b4b24d3c 40 extern "C" {
sfjmt 3:b0a1b4b24d3c 41 #endif
sfjmt 3:b0a1b4b24d3c 42
sfjmt 3:b0a1b4b24d3c 43 err_t slipif_init(struct netif * netif);
sfjmt 3:b0a1b4b24d3c 44 void slipif_poll(struct netif *netif);
sfjmt 3:b0a1b4b24d3c 45
sfjmt 3:b0a1b4b24d3c 46 #ifdef __cplusplus
sfjmt 3:b0a1b4b24d3c 47 }
sfjmt 3:b0a1b4b24d3c 48 #endif
sfjmt 3:b0a1b4b24d3c 49
sfjmt 3:b0a1b4b24d3c 50 #endif
sfjmt 3:b0a1b4b24d3c 51