TwitterExample with newer library (2012Aug)

Dependencies:   EthernetNetIf HTTPClient mbed

Committer:
nxpfan
Date:
Wed Aug 29 03:50:19 2012 +0000
Revision:
0:075157567b0c
simple twitter example with newer library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nxpfan 0:075157567b0c 1 /*****************************************************************************
nxpfan 0:075157567b0c 2 * pppdebug.h - System debugging utilities.
nxpfan 0:075157567b0c 3 *
nxpfan 0:075157567b0c 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
nxpfan 0:075157567b0c 5 * portions Copyright (c) 1998 Global Election Systems Inc.
nxpfan 0:075157567b0c 6 * portions Copyright (c) 2001 by Cognizant Pty Ltd.
nxpfan 0:075157567b0c 7 *
nxpfan 0:075157567b0c 8 * The authors hereby grant permission to use, copy, modify, distribute,
nxpfan 0:075157567b0c 9 * and license this software and its documentation for any purpose, provided
nxpfan 0:075157567b0c 10 * that existing copyright notices are retained in all copies and that this
nxpfan 0:075157567b0c 11 * notice and the following disclaimer are included verbatim in any
nxpfan 0:075157567b0c 12 * distributions. No written agreement, license, or royalty fee is required
nxpfan 0:075157567b0c 13 * for any of the authorized uses.
nxpfan 0:075157567b0c 14 *
nxpfan 0:075157567b0c 15 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
nxpfan 0:075157567b0c 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
nxpfan 0:075157567b0c 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
nxpfan 0:075157567b0c 18 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
nxpfan 0:075157567b0c 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
nxpfan 0:075157567b0c 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
nxpfan 0:075157567b0c 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
nxpfan 0:075157567b0c 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
nxpfan 0:075157567b0c 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
nxpfan 0:075157567b0c 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
nxpfan 0:075157567b0c 25 *
nxpfan 0:075157567b0c 26 ******************************************************************************
nxpfan 0:075157567b0c 27 * REVISION HISTORY (please don't use tabs!)
nxpfan 0:075157567b0c 28 *
nxpfan 0:075157567b0c 29 * 03-01-01 Marc Boucher <marc@mbsi.ca>
nxpfan 0:075157567b0c 30 * Ported to lwIP.
nxpfan 0:075157567b0c 31 * 98-07-29 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
nxpfan 0:075157567b0c 32 * Original.
nxpfan 0:075157567b0c 33 *
nxpfan 0:075157567b0c 34 *****************************************************************************
nxpfan 0:075157567b0c 35 */
nxpfan 0:075157567b0c 36 #ifndef PPPDEBUG_H
nxpfan 0:075157567b0c 37 #define PPPDEBUG_H
nxpfan 0:075157567b0c 38
nxpfan 0:075157567b0c 39 /* Trace levels. */
nxpfan 0:075157567b0c 40 #define LOG_CRITICAL (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE)
nxpfan 0:075157567b0c 41 #define LOG_ERR (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE)
nxpfan 0:075157567b0c 42 #define LOG_NOTICE (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING)
nxpfan 0:075157567b0c 43 #define LOG_WARNING (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING)
nxpfan 0:075157567b0c 44 #define LOG_INFO (PPP_DEBUG)
nxpfan 0:075157567b0c 45 #define LOG_DETAIL (PPP_DEBUG)
nxpfan 0:075157567b0c 46 #define LOG_DEBUG (PPP_DEBUG)
nxpfan 0:075157567b0c 47
nxpfan 0:075157567b0c 48
nxpfan 0:075157567b0c 49 #define TRACELCP PPP_DEBUG
nxpfan 0:075157567b0c 50
nxpfan 0:075157567b0c 51 #if PPP_DEBUG
nxpfan 0:075157567b0c 52
nxpfan 0:075157567b0c 53 #define AUTHDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 54 #define IPCPDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 55 #define UPAPDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 56 #define LCPDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 57 #define FSMDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 58 #define CHAPDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 59 #define PPPDEBUG(a, b) LWIP_DEBUGF(a, b)
nxpfan 0:075157567b0c 60
nxpfan 0:075157567b0c 61 #else /* PPP_DEBUG */
nxpfan 0:075157567b0c 62
nxpfan 0:075157567b0c 63 #define AUTHDEBUG(a, b)
nxpfan 0:075157567b0c 64 #define IPCPDEBUG(a, b)
nxpfan 0:075157567b0c 65 #define UPAPDEBUG(a, b)
nxpfan 0:075157567b0c 66 #define LCPDEBUG(a, b)
nxpfan 0:075157567b0c 67 #define FSMDEBUG(a, b)
nxpfan 0:075157567b0c 68 #define CHAPDEBUG(a, b)
nxpfan 0:075157567b0c 69 #define PPPDEBUG(a, b)
nxpfan 0:075157567b0c 70
nxpfan 0:075157567b0c 71 #endif /* PPP_DEBUG */
nxpfan 0:075157567b0c 72
nxpfan 0:075157567b0c 73 #endif /* PPPDEBUG_H */