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_ERR_H__
shintamainjp 0:521ba375aa0f 33 #define __LWIP_ERR_H__
shintamainjp 0:521ba375aa0f 34
shintamainjp 0:521ba375aa0f 35 #include "lwip/opt.h"
shintamainjp 0:521ba375aa0f 36 #include "lwip/arch.h"
shintamainjp 0:521ba375aa0f 37
shintamainjp 0:521ba375aa0f 38 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 39 extern "C" {
shintamainjp 0:521ba375aa0f 40 #endif
shintamainjp 0:521ba375aa0f 41
shintamainjp 0:521ba375aa0f 42 /** Define LWIP_ERR_T in cc.h if you want to use
shintamainjp 0:521ba375aa0f 43 * a different type for your platform (must be signed). */
shintamainjp 0:521ba375aa0f 44 #ifdef LWIP_ERR_T
shintamainjp 0:521ba375aa0f 45 typedef LWIP_ERR_T err_t;
shintamainjp 0:521ba375aa0f 46 #else /* LWIP_ERR_T */
shintamainjp 0:521ba375aa0f 47 typedef s8_t err_t;
shintamainjp 0:521ba375aa0f 48 #endif /* LWIP_ERR_T*/
shintamainjp 0:521ba375aa0f 49
shintamainjp 0:521ba375aa0f 50 /* Definitions for error constants. */
shintamainjp 0:521ba375aa0f 51
shintamainjp 0:521ba375aa0f 52 #define ERR_OK 0 /* No error, everything OK. */
shintamainjp 0:521ba375aa0f 53 #define ERR_MEM -1 /* Out of memory error. */
shintamainjp 0:521ba375aa0f 54 #define ERR_BUF -2 /* Buffer error. */
shintamainjp 0:521ba375aa0f 55 #define ERR_TIMEOUT -3 /* Timeout. */
shintamainjp 0:521ba375aa0f 56 #define ERR_RTE -4 /* Routing problem. */
shintamainjp 0:521ba375aa0f 57 #define ERR_INPROGRESS -5 /* Operation in progress */
shintamainjp 0:521ba375aa0f 58 #define ERR_VAL -6 /* Illegal value. */
shintamainjp 0:521ba375aa0f 59 #define ERR_WOULDBLOCK -7 /* Operation would block. */
shintamainjp 0:521ba375aa0f 60
shintamainjp 0:521ba375aa0f 61 #define ERR_IS_FATAL(e) ((e) < ERR_VAL)
shintamainjp 0:521ba375aa0f 62
shintamainjp 0:521ba375aa0f 63 #define ERR_ABRT -8 /* Connection aborted. */
shintamainjp 0:521ba375aa0f 64 #define ERR_RST -9 /* Connection reset. */
shintamainjp 0:521ba375aa0f 65 #define ERR_CLSD -10 /* Connection closed. */
shintamainjp 0:521ba375aa0f 66 #define ERR_CONN -11 /* Not connected. */
shintamainjp 0:521ba375aa0f 67
shintamainjp 0:521ba375aa0f 68 #define ERR_ARG -12 /* Illegal argument. */
shintamainjp 0:521ba375aa0f 69
shintamainjp 0:521ba375aa0f 70 #define ERR_USE -13 /* Address in use. */
shintamainjp 0:521ba375aa0f 71
shintamainjp 0:521ba375aa0f 72 #define ERR_IF -14 /* Low-level netif error */
shintamainjp 0:521ba375aa0f 73 #define ERR_ISCONN -15 /* Already connected. */
shintamainjp 0:521ba375aa0f 74
shintamainjp 0:521ba375aa0f 75
shintamainjp 0:521ba375aa0f 76 #ifdef LWIP_DEBUG
shintamainjp 0:521ba375aa0f 77 extern const char *lwip_strerr(err_t err);
shintamainjp 0:521ba375aa0f 78 #else
shintamainjp 0:521ba375aa0f 79 #define lwip_strerr(x) ""
shintamainjp 0:521ba375aa0f 80 #endif /* LWIP_DEBUG */
shintamainjp 0:521ba375aa0f 81
shintamainjp 0:521ba375aa0f 82 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 83 }
shintamainjp 0:521ba375aa0f 84 #endif
shintamainjp 0:521ba375aa0f 85
shintamainjp 0:521ba375aa0f 86 #endif /* __LWIP_ERR_H__ */