Modified to run on Renesas GR Peach board

Dependencies:   EthernetInterface HTTP-Server Webpage mbed-rpc mbed-src

Fork of HTTPServer_echoback by Takuya Urakawa

Committer:
webOnBoard
Date:
Wed Oct 07 20:42:51 2015 +0000
Revision:
16:5d102be2566c
web based AHRS demo Renesas GR Peach board; Using HTTP Server/RPC Adafruit 10DOF

Who changed what in which revision?

UserRevisionLine numberNew contents of line
webOnBoard 16:5d102be2566c 1 /*----------------------------------------------------------------------------
webOnBoard 16:5d102be2566c 2 * RL-ARM - RTX
webOnBoard 16:5d102be2566c 3 *----------------------------------------------------------------------------
webOnBoard 16:5d102be2566c 4 * Name: RT_TIMER.H
webOnBoard 16:5d102be2566c 5 * Purpose: User timer functions
webOnBoard 16:5d102be2566c 6 * Rev.: V4.60
webOnBoard 16:5d102be2566c 7 *----------------------------------------------------------------------------
webOnBoard 16:5d102be2566c 8 *
webOnBoard 16:5d102be2566c 9 * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
webOnBoard 16:5d102be2566c 10 * All rights reserved.
webOnBoard 16:5d102be2566c 11 * Redistribution and use in source and binary forms, with or without
webOnBoard 16:5d102be2566c 12 * modification, are permitted provided that the following conditions are met:
webOnBoard 16:5d102be2566c 13 * - Redistributions of source code must retain the above copyright
webOnBoard 16:5d102be2566c 14 * notice, this list of conditions and the following disclaimer.
webOnBoard 16:5d102be2566c 15 * - Redistributions in binary form must reproduce the above copyright
webOnBoard 16:5d102be2566c 16 * notice, this list of conditions and the following disclaimer in the
webOnBoard 16:5d102be2566c 17 * documentation and/or other materials provided with the distribution.
webOnBoard 16:5d102be2566c 18 * - Neither the name of ARM nor the names of its contributors may be used
webOnBoard 16:5d102be2566c 19 * to endorse or promote products derived from this software without
webOnBoard 16:5d102be2566c 20 * specific prior written permission.
webOnBoard 16:5d102be2566c 21 *
webOnBoard 16:5d102be2566c 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
webOnBoard 16:5d102be2566c 23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
webOnBoard 16:5d102be2566c 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
webOnBoard 16:5d102be2566c 25 * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
webOnBoard 16:5d102be2566c 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
webOnBoard 16:5d102be2566c 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
webOnBoard 16:5d102be2566c 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
webOnBoard 16:5d102be2566c 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
webOnBoard 16:5d102be2566c 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
webOnBoard 16:5d102be2566c 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
webOnBoard 16:5d102be2566c 32 * POSSIBILITY OF SUCH DAMAGE.
webOnBoard 16:5d102be2566c 33 *---------------------------------------------------------------------------*/
webOnBoard 16:5d102be2566c 34
webOnBoard 16:5d102be2566c 35 /* Variables */
webOnBoard 16:5d102be2566c 36 extern struct OS_XTMR os_tmr;
webOnBoard 16:5d102be2566c 37
webOnBoard 16:5d102be2566c 38 /* Functions */
webOnBoard 16:5d102be2566c 39 extern void rt_tmr_tick (void);
webOnBoard 16:5d102be2566c 40 extern OS_ID rt_tmr_create (U16 tcnt, U16 info);
webOnBoard 16:5d102be2566c 41 extern OS_ID rt_tmr_kill (OS_ID timer);
webOnBoard 16:5d102be2566c 42
webOnBoard 16:5d102be2566c 43 /*----------------------------------------------------------------------------
webOnBoard 16:5d102be2566c 44 * end of file
webOnBoard 16:5d102be2566c 45 *---------------------------------------------------------------------------*/
webOnBoard 16:5d102be2566c 46