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 * pap.h - PPP Password Authentication Protocol header file.
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) 1997 Global Election Systems Inc.
helmut 0:5150b09127e3 6 *
helmut 0:5150b09127e3 7 * The authors hereby grant permission to use, copy, modify, distribute,
helmut 0:5150b09127e3 8 * and license this software and its documentation for any purpose, provided
helmut 0:5150b09127e3 9 * that existing copyright notices are retained in all copies and that this
helmut 0:5150b09127e3 10 * notice and the following disclaimer are included verbatim in any
helmut 0:5150b09127e3 11 * distributions. No written agreement, license, or royalty fee is required
helmut 0:5150b09127e3 12 * for any of the authorized uses.
helmut 0:5150b09127e3 13 *
helmut 0:5150b09127e3 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
helmut 0:5150b09127e3 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
helmut 0:5150b09127e3 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
helmut 0:5150b09127e3 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
helmut 0:5150b09127e3 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
helmut 0:5150b09127e3 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
helmut 0:5150b09127e3 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
helmut 0:5150b09127e3 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
helmut 0:5150b09127e3 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
helmut 0:5150b09127e3 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
helmut 0:5150b09127e3 24 *
helmut 0:5150b09127e3 25 ******************************************************************************
helmut 0:5150b09127e3 26 * REVISION HISTORY
helmut 0:5150b09127e3 27 *
helmut 0:5150b09127e3 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
helmut 0:5150b09127e3 29 * Ported to lwIP.
helmut 0:5150b09127e3 30 * 97-12-04 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
helmut 0:5150b09127e3 31 * Original derived from BSD codes.
helmut 0:5150b09127e3 32 *****************************************************************************/
helmut 0:5150b09127e3 33 /*
helmut 0:5150b09127e3 34 * upap.h - User/Password Authentication Protocol definitions.
helmut 0:5150b09127e3 35 *
helmut 0:5150b09127e3 36 * Copyright (c) 1989 Carnegie Mellon University.
helmut 0:5150b09127e3 37 * All rights reserved.
helmut 0:5150b09127e3 38 *
helmut 0:5150b09127e3 39 * Redistribution and use in source and binary forms are permitted
helmut 0:5150b09127e3 40 * provided that the above copyright notice and this paragraph are
helmut 0:5150b09127e3 41 * duplicated in all such forms and that any documentation,
helmut 0:5150b09127e3 42 * advertising materials, and other materials related to such
helmut 0:5150b09127e3 43 * distribution and use acknowledge that the software was developed
helmut 0:5150b09127e3 44 * by Carnegie Mellon University. The name of the
helmut 0:5150b09127e3 45 * University may not be used to endorse or promote products derived
helmut 0:5150b09127e3 46 * from this software without specific prior written permission.
helmut 0:5150b09127e3 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
helmut 0:5150b09127e3 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
helmut 0:5150b09127e3 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
helmut 0:5150b09127e3 50 */
helmut 0:5150b09127e3 51
helmut 0:5150b09127e3 52 #ifndef PAP_H
helmut 0:5150b09127e3 53 #define PAP_H
helmut 0:5150b09127e3 54
helmut 0:5150b09127e3 55 #if PAP_SUPPORT /* don't build if not configured for use in lwipopts.h */
helmut 0:5150b09127e3 56
helmut 0:5150b09127e3 57 /*
helmut 0:5150b09127e3 58 * Packet header = Code, id, length.
helmut 0:5150b09127e3 59 */
helmut 0:5150b09127e3 60 #define UPAP_HEADERLEN (sizeof (u_char) + sizeof (u_char) + sizeof (u_short))
helmut 0:5150b09127e3 61
helmut 0:5150b09127e3 62
helmut 0:5150b09127e3 63 /*
helmut 0:5150b09127e3 64 * UPAP codes.
helmut 0:5150b09127e3 65 */
helmut 0:5150b09127e3 66 #define UPAP_AUTHREQ 1 /* Authenticate-Request */
helmut 0:5150b09127e3 67 #define UPAP_AUTHACK 2 /* Authenticate-Ack */
helmut 0:5150b09127e3 68 #define UPAP_AUTHNAK 3 /* Authenticate-Nak */
helmut 0:5150b09127e3 69
helmut 0:5150b09127e3 70 /*
helmut 0:5150b09127e3 71 * Each interface is described by upap structure.
helmut 0:5150b09127e3 72 */
helmut 0:5150b09127e3 73 typedef struct upap_state {
helmut 0:5150b09127e3 74 int us_unit; /* Interface unit number */
helmut 0:5150b09127e3 75 const char *us_user; /* User */
helmut 0:5150b09127e3 76 int us_userlen; /* User length */
helmut 0:5150b09127e3 77 const char *us_passwd; /* Password */
helmut 0:5150b09127e3 78 int us_passwdlen; /* Password length */
helmut 0:5150b09127e3 79 int us_clientstate; /* Client state */
helmut 0:5150b09127e3 80 int us_serverstate; /* Server state */
helmut 0:5150b09127e3 81 u_char us_id; /* Current id */
helmut 0:5150b09127e3 82 int us_timeouttime; /* Timeout (seconds) for auth-req retrans. */
helmut 0:5150b09127e3 83 int us_transmits; /* Number of auth-reqs sent */
helmut 0:5150b09127e3 84 int us_maxtransmits; /* Maximum number of auth-reqs to send */
helmut 0:5150b09127e3 85 int us_reqtimeout; /* Time to wait for auth-req from peer */
helmut 0:5150b09127e3 86 } upap_state;
helmut 0:5150b09127e3 87
helmut 0:5150b09127e3 88 /*
helmut 0:5150b09127e3 89 * Client states.
helmut 0:5150b09127e3 90 */
helmut 0:5150b09127e3 91 #define UPAPCS_INITIAL 0 /* Connection down */
helmut 0:5150b09127e3 92 #define UPAPCS_CLOSED 1 /* Connection up, haven't requested auth */
helmut 0:5150b09127e3 93 #define UPAPCS_PENDING 2 /* Connection down, have requested auth */
helmut 0:5150b09127e3 94 #define UPAPCS_AUTHREQ 3 /* We've sent an Authenticate-Request */
helmut 0:5150b09127e3 95 #define UPAPCS_OPEN 4 /* We've received an Ack */
helmut 0:5150b09127e3 96 #define UPAPCS_BADAUTH 5 /* We've received a Nak */
helmut 0:5150b09127e3 97
helmut 0:5150b09127e3 98 /*
helmut 0:5150b09127e3 99 * Server states.
helmut 0:5150b09127e3 100 */
helmut 0:5150b09127e3 101 #define UPAPSS_INITIAL 0 /* Connection down */
helmut 0:5150b09127e3 102 #define UPAPSS_CLOSED 1 /* Connection up, haven't requested auth */
helmut 0:5150b09127e3 103 #define UPAPSS_PENDING 2 /* Connection down, have requested auth */
helmut 0:5150b09127e3 104 #define UPAPSS_LISTEN 3 /* Listening for an Authenticate */
helmut 0:5150b09127e3 105 #define UPAPSS_OPEN 4 /* We've sent an Ack */
helmut 0:5150b09127e3 106 #define UPAPSS_BADAUTH 5 /* We've sent a Nak */
helmut 0:5150b09127e3 107
helmut 0:5150b09127e3 108
helmut 0:5150b09127e3 109 extern upap_state upap[];
helmut 0:5150b09127e3 110
helmut 0:5150b09127e3 111 void upap_authwithpeer (int, char *, char *);
helmut 0:5150b09127e3 112 void upap_authpeer (int);
helmut 0:5150b09127e3 113
helmut 0:5150b09127e3 114 extern struct protent pap_protent;
helmut 0:5150b09127e3 115
helmut 0:5150b09127e3 116 #endif /* PAP_SUPPORT */
helmut 0:5150b09127e3 117
helmut 0:5150b09127e3 118 #endif /* PAP_H */