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-2004 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 modification,
shintamainjp 0:521ba375aa0f 6 * are permitted provided that the following conditions are met:
shintamainjp 0:521ba375aa0f 7 *
shintamainjp 0:521ba375aa0f 8 * 1. Redistributions of source code must retain the above copyright notice,
shintamainjp 0:521ba375aa0f 9 * this list of conditions and the following disclaimer.
shintamainjp 0:521ba375aa0f 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
shintamainjp 0:521ba375aa0f 11 * this list of conditions and the following disclaimer in the documentation
shintamainjp 0:521ba375aa0f 12 * and/or other materials provided with the distribution.
shintamainjp 0:521ba375aa0f 13 * 3. The name of the author may not be used to endorse or promote products
shintamainjp 0:521ba375aa0f 14 * derived from this software without specific prior written permission.
shintamainjp 0:521ba375aa0f 15 *
shintamainjp 0:521ba375aa0f 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
shintamainjp 0:521ba375aa0f 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
shintamainjp 0:521ba375aa0f 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
shintamainjp 0:521ba375aa0f 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
shintamainjp 0:521ba375aa0f 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
shintamainjp 0:521ba375aa0f 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
shintamainjp 0:521ba375aa0f 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
shintamainjp 0:521ba375aa0f 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
shintamainjp 0:521ba375aa0f 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
shintamainjp 0:521ba375aa0f 25 * OF SUCH DAMAGE.
shintamainjp 0:521ba375aa0f 26 *
shintamainjp 0:521ba375aa0f 27 * This file is part of the lwIP TCP/IP stack.
shintamainjp 0:521ba375aa0f 28 *
shintamainjp 0:521ba375aa0f 29 * Author: Adam Dunkels <adam@sics.se>
shintamainjp 0:521ba375aa0f 30 *
shintamainjp 0:521ba375aa0f 31 */
shintamainjp 0:521ba375aa0f 32 #ifndef __LWIP_INIT_H__
shintamainjp 0:521ba375aa0f 33 #define __LWIP_INIT_H__
shintamainjp 0:521ba375aa0f 34
shintamainjp 0:521ba375aa0f 35 #include "lwip/opt.h"
shintamainjp 0:521ba375aa0f 36
shintamainjp 0:521ba375aa0f 37 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 38 extern "C" {
shintamainjp 0:521ba375aa0f 39 #endif
shintamainjp 0:521ba375aa0f 40
shintamainjp 0:521ba375aa0f 41 /** X.x.x: Major version of the stack */
shintamainjp 0:521ba375aa0f 42 #define LWIP_VERSION_MAJOR 1U
shintamainjp 0:521ba375aa0f 43 /** x.X.x: Minor version of the stack */
shintamainjp 0:521ba375aa0f 44 #define LWIP_VERSION_MINOR 4U
shintamainjp 0:521ba375aa0f 45 /** x.x.X: Revision of the stack */
shintamainjp 0:521ba375aa0f 46 #define LWIP_VERSION_REVISION 0U
shintamainjp 0:521ba375aa0f 47 /** For release candidates, this is set to 1..254
shintamainjp 0:521ba375aa0f 48 * For official releases, this is set to 255 (LWIP_RC_RELEASE)
shintamainjp 0:521ba375aa0f 49 * For development versions (CVS), this is set to 0 (LWIP_RC_DEVELOPMENT) */
shintamainjp 0:521ba375aa0f 50 #define LWIP_VERSION_RC 1U
shintamainjp 0:521ba375aa0f 51
shintamainjp 0:521ba375aa0f 52 /** LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases */
shintamainjp 0:521ba375aa0f 53 #define LWIP_RC_RELEASE 255U
shintamainjp 0:521ba375aa0f 54 /** LWIP_VERSION_RC is set to LWIP_RC_DEVELOPMENT for CVS versions */
shintamainjp 0:521ba375aa0f 55 #define LWIP_RC_DEVELOPMENT 0U
shintamainjp 0:521ba375aa0f 56
shintamainjp 0:521ba375aa0f 57 #define LWIP_VERSION_IS_RELEASE (LWIP_VERSION_RC == LWIP_RC_RELEASE)
shintamainjp 0:521ba375aa0f 58 #define LWIP_VERSION_IS_DEVELOPMENT (LWIP_VERSION_RC == LWIP_RC_DEVELOPMENT)
shintamainjp 0:521ba375aa0f 59 #define LWIP_VERSION_IS_RC ((LWIP_VERSION_RC != LWIP_RC_RELEASE) && (LWIP_VERSION_RC != LWIP_RC_DEVELOPMENT))
shintamainjp 0:521ba375aa0f 60
shintamainjp 0:521ba375aa0f 61 /** Provides the version of the stack */
shintamainjp 0:521ba375aa0f 62 #define LWIP_VERSION (LWIP_VERSION_MAJOR << 24 | LWIP_VERSION_MINOR << 16 | \
shintamainjp 0:521ba375aa0f 63 LWIP_VERSION_REVISION << 8 | LWIP_VERSION_RC)
shintamainjp 0:521ba375aa0f 64
shintamainjp 0:521ba375aa0f 65 /* Modules initialization */
shintamainjp 0:521ba375aa0f 66 void lwip_init(void);
shintamainjp 0:521ba375aa0f 67
shintamainjp 0:521ba375aa0f 68 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 69 }
shintamainjp 0:521ba375aa0f 70 #endif
shintamainjp 0:521ba375aa0f 71
shintamainjp 0:521ba375aa0f 72 #endif /* __LWIP_INIT_H__ */