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 * Simon Goldschmidt
shintamainjp 0:521ba375aa0f 31 *
shintamainjp 0:521ba375aa0f 32 */
shintamainjp 0:521ba375aa0f 33 #ifndef __LWIP_TIMERS_H__
shintamainjp 0:521ba375aa0f 34 #define __LWIP_TIMERS_H__
shintamainjp 0:521ba375aa0f 35
shintamainjp 0:521ba375aa0f 36 #include "lwip/opt.h"
shintamainjp 0:521ba375aa0f 37
shintamainjp 0:521ba375aa0f 38 /* Timers are not supported when NO_SYS==1 and NO_SYS_NO_TIMERS==1 */
shintamainjp 0:521ba375aa0f 39 #define LWIP_TIMERS (!NO_SYS || (NO_SYS && !NO_SYS_NO_TIMERS))
shintamainjp 0:521ba375aa0f 40
shintamainjp 0:521ba375aa0f 41 #if LWIP_TIMERS
shintamainjp 0:521ba375aa0f 42
shintamainjp 0:521ba375aa0f 43 #include "lwip/err.h"
shintamainjp 0:521ba375aa0f 44 #include "lwip/sys.h"
shintamainjp 0:521ba375aa0f 45
shintamainjp 0:521ba375aa0f 46 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 47 extern "C" {
shintamainjp 0:521ba375aa0f 48 #endif
shintamainjp 0:521ba375aa0f 49
shintamainjp 0:521ba375aa0f 50 #ifndef LWIP_DEBUG_TIMERNAMES
shintamainjp 0:521ba375aa0f 51 #ifdef LWIP_DEBUG
shintamainjp 0:521ba375aa0f 52 #define LWIP_DEBUG_TIMERNAMES SYS_DEBUG
shintamainjp 0:521ba375aa0f 53 #else /* LWIP_DEBUG */
shintamainjp 0:521ba375aa0f 54 #define LWIP_DEBUG_TIMERNAMES 0
shintamainjp 0:521ba375aa0f 55 #endif /* LWIP_DEBUG*/
shintamainjp 0:521ba375aa0f 56 #endif
shintamainjp 0:521ba375aa0f 57
shintamainjp 0:521ba375aa0f 58 /** Function prototype for a timeout callback function. Register such a function
shintamainjp 0:521ba375aa0f 59 * using sys_timeout().
shintamainjp 0:521ba375aa0f 60 *
shintamainjp 0:521ba375aa0f 61 * @param arg Additional argument to pass to the function - set up by sys_timeout()
shintamainjp 0:521ba375aa0f 62 */
shintamainjp 0:521ba375aa0f 63 typedef void (* sys_timeout_handler)(void *arg);
shintamainjp 0:521ba375aa0f 64
shintamainjp 0:521ba375aa0f 65 struct sys_timeo {
shintamainjp 0:521ba375aa0f 66 struct sys_timeo *next;
shintamainjp 0:521ba375aa0f 67 u32_t time;
shintamainjp 0:521ba375aa0f 68 sys_timeout_handler h;
shintamainjp 0:521ba375aa0f 69 void *arg;
shintamainjp 0:521ba375aa0f 70 #if LWIP_DEBUG_TIMERNAMES
shintamainjp 0:521ba375aa0f 71 const char* handler_name;
shintamainjp 0:521ba375aa0f 72 #endif /* LWIP_DEBUG_TIMERNAMES */
shintamainjp 0:521ba375aa0f 73 };
shintamainjp 0:521ba375aa0f 74
shintamainjp 0:521ba375aa0f 75 void sys_timeouts_init(void);
shintamainjp 0:521ba375aa0f 76
shintamainjp 0:521ba375aa0f 77 #if LWIP_DEBUG_TIMERNAMES
shintamainjp 0:521ba375aa0f 78 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name);
shintamainjp 0:521ba375aa0f 79 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler)
shintamainjp 0:521ba375aa0f 80 #else /* LWIP_DEBUG_TIMERNAMES */
shintamainjp 0:521ba375aa0f 81 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
shintamainjp 0:521ba375aa0f 82 #endif /* LWIP_DEBUG_TIMERNAMES */
shintamainjp 0:521ba375aa0f 83
shintamainjp 0:521ba375aa0f 84 void sys_untimeout(sys_timeout_handler handler, void *arg);
shintamainjp 0:521ba375aa0f 85 #if NO_SYS
shintamainjp 0:521ba375aa0f 86 void sys_check_timeouts(void);
shintamainjp 0:521ba375aa0f 87 void sys_restart_timeouts(void);
shintamainjp 0:521ba375aa0f 88 #else /* NO_SYS */
shintamainjp 0:521ba375aa0f 89 void sys_timeouts_mbox_fetch(sys_mbox_t *mbox, void **msg);
shintamainjp 0:521ba375aa0f 90 #endif /* NO_SYS */
shintamainjp 0:521ba375aa0f 91
shintamainjp 0:521ba375aa0f 92
shintamainjp 0:521ba375aa0f 93 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 94 }
shintamainjp 0:521ba375aa0f 95 #endif
shintamainjp 0:521ba375aa0f 96
shintamainjp 0:521ba375aa0f 97 #endif /* LWIP_TIMERS */
shintamainjp 0:521ba375aa0f 98 #endif /* __LWIP_TIMERS_H__ */