Hi. This is the feed program for Cosm. (The previous name of the services is Pachube.)

Dependencies:   mbed ThermistorPack Pachube ConfigFile EthernetNetIf TextLCD HTTPClient_ToBeRemoved FatFileSystem SDFileSystem

Committer:
shintamainjp
Date:
Mon Aug 06 12:37:59 2012 +0000
Revision:
0:521ba375aa0f
Pachube renamed to Cosm.

Who changed what in which revision?

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