Give water to plants if dry amd pla meanwhile music the music vou can define with note length bind and breake also select several instruments for the sound

Dependencies:   mbed

Committer:
helmut
Date:
Wed Sep 19 14:16:56 2012 +0000
Revision:
0:5150b09127e3
plays mostly music that you can do with notes length breakes and bind; Some already defined; Tool is to start a pump for water to give plant is too dry.; Meanwhie plays music the most part of all

Who changed what in which revision?

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