Xbee test 2

Dependencies:   XBee mbed

Committer:
takashiyamanoue
Date:
Sat Jul 21 04:08:27 2012 +0000
Revision:
0:ffac63d6a7f0
xbee test 2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
takashiyamanoue 0:ffac63d6a7f0 1 /*****************************************************************************
takashiyamanoue 0:ffac63d6a7f0 2 * randm.h - Random number generator header file.
takashiyamanoue 0:ffac63d6a7f0 3 *
takashiyamanoue 0:ffac63d6a7f0 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
takashiyamanoue 0:ffac63d6a7f0 5 * Copyright (c) 1998 Global Election Systems Inc.
takashiyamanoue 0:ffac63d6a7f0 6 *
takashiyamanoue 0:ffac63d6a7f0 7 * The authors hereby grant permission to use, copy, modify, distribute,
takashiyamanoue 0:ffac63d6a7f0 8 * and license this software and its documentation for any purpose, provided
takashiyamanoue 0:ffac63d6a7f0 9 * that existing copyright notices are retained in all copies and that this
takashiyamanoue 0:ffac63d6a7f0 10 * notice and the following disclaimer are included verbatim in any
takashiyamanoue 0:ffac63d6a7f0 11 * distributions. No written agreement, license, or royalty fee is required
takashiyamanoue 0:ffac63d6a7f0 12 * for any of the authorized uses.
takashiyamanoue 0:ffac63d6a7f0 13 *
takashiyamanoue 0:ffac63d6a7f0 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
takashiyamanoue 0:ffac63d6a7f0 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
takashiyamanoue 0:ffac63d6a7f0 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
takashiyamanoue 0:ffac63d6a7f0 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
takashiyamanoue 0:ffac63d6a7f0 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
takashiyamanoue 0:ffac63d6a7f0 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
takashiyamanoue 0:ffac63d6a7f0 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
takashiyamanoue 0:ffac63d6a7f0 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
takashiyamanoue 0:ffac63d6a7f0 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
takashiyamanoue 0:ffac63d6a7f0 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
takashiyamanoue 0:ffac63d6a7f0 24 *
takashiyamanoue 0:ffac63d6a7f0 25 ******************************************************************************
takashiyamanoue 0:ffac63d6a7f0 26 * REVISION HISTORY
takashiyamanoue 0:ffac63d6a7f0 27 *
takashiyamanoue 0:ffac63d6a7f0 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
takashiyamanoue 0:ffac63d6a7f0 29 * Ported to lwIP.
takashiyamanoue 0:ffac63d6a7f0 30 * 98-05-29 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
takashiyamanoue 0:ffac63d6a7f0 31 * Extracted from avos.
takashiyamanoue 0:ffac63d6a7f0 32 *****************************************************************************/
takashiyamanoue 0:ffac63d6a7f0 33
takashiyamanoue 0:ffac63d6a7f0 34 #ifndef RANDM_H
takashiyamanoue 0:ffac63d6a7f0 35 #define RANDM_H
takashiyamanoue 0:ffac63d6a7f0 36
takashiyamanoue 0:ffac63d6a7f0 37 /***********************
takashiyamanoue 0:ffac63d6a7f0 38 *** PUBLIC FUNCTIONS ***
takashiyamanoue 0:ffac63d6a7f0 39 ***********************/
takashiyamanoue 0:ffac63d6a7f0 40 /*
takashiyamanoue 0:ffac63d6a7f0 41 * Initialize the random number generator.
takashiyamanoue 0:ffac63d6a7f0 42 */
takashiyamanoue 0:ffac63d6a7f0 43 void avRandomInit(void);
takashiyamanoue 0:ffac63d6a7f0 44
takashiyamanoue 0:ffac63d6a7f0 45 /*
takashiyamanoue 0:ffac63d6a7f0 46 * Churn the randomness pool on a random event. Call this early and often
takashiyamanoue 0:ffac63d6a7f0 47 * on random and semi-random system events to build randomness in time for
takashiyamanoue 0:ffac63d6a7f0 48 * usage. For randomly timed events, pass a null pointer and a zero length
takashiyamanoue 0:ffac63d6a7f0 49 * and this will use the system timer and other sources to add randomness.
takashiyamanoue 0:ffac63d6a7f0 50 * If new random data is available, pass a pointer to that and it will be
takashiyamanoue 0:ffac63d6a7f0 51 * included.
takashiyamanoue 0:ffac63d6a7f0 52 */
takashiyamanoue 0:ffac63d6a7f0 53 void avChurnRand(char *randData, u32_t randLen);
takashiyamanoue 0:ffac63d6a7f0 54
takashiyamanoue 0:ffac63d6a7f0 55 /*
takashiyamanoue 0:ffac63d6a7f0 56 * Randomize our random seed value. To be called for truely random events
takashiyamanoue 0:ffac63d6a7f0 57 * such as user operations and network traffic.
takashiyamanoue 0:ffac63d6a7f0 58 */
takashiyamanoue 0:ffac63d6a7f0 59 #if MD5_SUPPORT
takashiyamanoue 0:ffac63d6a7f0 60 #define avRandomize() avChurnRand(NULL, 0)
takashiyamanoue 0:ffac63d6a7f0 61 #else /* MD5_SUPPORT */
takashiyamanoue 0:ffac63d6a7f0 62 void avRandomize(void);
takashiyamanoue 0:ffac63d6a7f0 63 #endif /* MD5_SUPPORT */
takashiyamanoue 0:ffac63d6a7f0 64
takashiyamanoue 0:ffac63d6a7f0 65 /*
takashiyamanoue 0:ffac63d6a7f0 66 * Use the random pool to generate random data. This degrades to pseudo
takashiyamanoue 0:ffac63d6a7f0 67 * random when used faster than randomness is supplied using churnRand().
takashiyamanoue 0:ffac63d6a7f0 68 * Thus it's important to make sure that the results of this are not
takashiyamanoue 0:ffac63d6a7f0 69 * published directly because one could predict the next result to at
takashiyamanoue 0:ffac63d6a7f0 70 * least some degree. Also, it's important to get a good seed before
takashiyamanoue 0:ffac63d6a7f0 71 * the first use.
takashiyamanoue 0:ffac63d6a7f0 72 */
takashiyamanoue 0:ffac63d6a7f0 73 void avGenRand(char *buf, u32_t bufLen);
takashiyamanoue 0:ffac63d6a7f0 74
takashiyamanoue 0:ffac63d6a7f0 75 /*
takashiyamanoue 0:ffac63d6a7f0 76 * Return a new random number.
takashiyamanoue 0:ffac63d6a7f0 77 */
takashiyamanoue 0:ffac63d6a7f0 78 u32_t avRandom(void);
takashiyamanoue 0:ffac63d6a7f0 79
takashiyamanoue 0:ffac63d6a7f0 80
takashiyamanoue 0:ffac63d6a7f0 81 #endif /* RANDM_H */