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 /* mbed Microcontroller Library
komoritan 0:14bd24b5a77f 2 * Copyright (c) 2006-2012 ARM Limited
komoritan 0:14bd24b5a77f 3 *
komoritan 0:14bd24b5a77f 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
komoritan 0:14bd24b5a77f 5 * of this software and associated documentation files (the "Software"), to deal
komoritan 0:14bd24b5a77f 6 * in the Software without restriction, including without limitation the rights
komoritan 0:14bd24b5a77f 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
komoritan 0:14bd24b5a77f 8 * copies of the Software, and to permit persons to whom the Software is
komoritan 0:14bd24b5a77f 9 * furnished to do so, subject to the following conditions:
komoritan 0:14bd24b5a77f 10 *
komoritan 0:14bd24b5a77f 11 * The above copyright notice and this permission notice shall be included in
komoritan 0:14bd24b5a77f 12 * all copies or substantial portions of the Software.
komoritan 0:14bd24b5a77f 13 *
komoritan 0:14bd24b5a77f 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
komoritan 0:14bd24b5a77f 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
komoritan 0:14bd24b5a77f 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
komoritan 0:14bd24b5a77f 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
komoritan 0:14bd24b5a77f 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
komoritan 0:14bd24b5a77f 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
komoritan 0:14bd24b5a77f 20 * SOFTWARE.
komoritan 0:14bd24b5a77f 21 */
komoritan 0:14bd24b5a77f 22 #ifndef RTOS_H
komoritan 0:14bd24b5a77f 23 #define RTOS_H
komoritan 0:14bd24b5a77f 24
komoritan 0:14bd24b5a77f 25 #include "Thread.h"
komoritan 0:14bd24b5a77f 26 #include "Mutex.h"
komoritan 0:14bd24b5a77f 27 #include "RtosTimer.h"
komoritan 0:14bd24b5a77f 28 #include "Semaphore.h"
komoritan 0:14bd24b5a77f 29 #include "Mail.h"
komoritan 0:14bd24b5a77f 30 #include "MemoryPool.h"
komoritan 0:14bd24b5a77f 31 #include "Queue.h"
komoritan 0:14bd24b5a77f 32
komoritan 0:14bd24b5a77f 33 using namespace rtos;
komoritan 0:14bd24b5a77f 34
komoritan 0:14bd24b5a77f 35 #endif