Websocket_Sample for MurataTypeYD

Dependencies:   mbed picojson

Committer:
komoritan
Date:
Thu Mar 12 12:15:46 2015 +0000
Revision:
1:b5ac0f971f43
Parent:
0:14bd24b5a77f
Fixed

Who changed what in which revision?

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