SNMP agent attached to SPI slave

Dependencies:   mbed

Committer:
lorcansmith
Date:
Mon Aug 13 15:07:40 2012 +0000
Revision:
0:2a53a4c3238c
v1.1 release includes ioAlarm traps

Who changed what in which revision?

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