Committer:
borlanic
Date:
Tue Apr 24 11:45:18 2018 +0000
Revision:
0:02dd72d1d465
BaBoRo_test2 - backup 1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
borlanic 0:02dd72d1d465 1
borlanic 0:02dd72d1d465 2 /** \addtogroup rtos */
borlanic 0:02dd72d1d465 3 /** @{*/
borlanic 0:02dd72d1d465 4 /* mbed Microcontroller Library
borlanic 0:02dd72d1d465 5 * Copyright (c) 2006-2012 ARM Limited
borlanic 0:02dd72d1d465 6 *
borlanic 0:02dd72d1d465 7 * Permission is hereby granted, free of charge, to any person obtaining a copy
borlanic 0:02dd72d1d465 8 * of this software and associated documentation files (the "Software"), to deal
borlanic 0:02dd72d1d465 9 * in the Software without restriction, including without limitation the rights
borlanic 0:02dd72d1d465 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
borlanic 0:02dd72d1d465 11 * copies of the Software, and to permit persons to whom the Software is
borlanic 0:02dd72d1d465 12 * furnished to do so, subject to the following conditions:
borlanic 0:02dd72d1d465 13 *
borlanic 0:02dd72d1d465 14 * The above copyright notice and this permission notice shall be included in
borlanic 0:02dd72d1d465 15 * all copies or substantial portions of the Software.
borlanic 0:02dd72d1d465 16 *
borlanic 0:02dd72d1d465 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
borlanic 0:02dd72d1d465 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
borlanic 0:02dd72d1d465 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
borlanic 0:02dd72d1d465 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
borlanic 0:02dd72d1d465 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
borlanic 0:02dd72d1d465 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
borlanic 0:02dd72d1d465 23 * SOFTWARE.
borlanic 0:02dd72d1d465 24 */
borlanic 0:02dd72d1d465 25 #ifndef RTOS_H
borlanic 0:02dd72d1d465 26 #define RTOS_H
borlanic 0:02dd72d1d465 27
borlanic 0:02dd72d1d465 28 #include "mbed_rtos_storage.h"
borlanic 0:02dd72d1d465 29 #include "rtos/Kernel.h"
borlanic 0:02dd72d1d465 30 #include "rtos/Thread.h"
borlanic 0:02dd72d1d465 31 #include "rtos/Mutex.h"
borlanic 0:02dd72d1d465 32 #include "rtos/RtosTimer.h"
borlanic 0:02dd72d1d465 33 #include "rtos/Semaphore.h"
borlanic 0:02dd72d1d465 34 #include "rtos/Mail.h"
borlanic 0:02dd72d1d465 35 #include "rtos/MemoryPool.h"
borlanic 0:02dd72d1d465 36 #include "rtos/Queue.h"
borlanic 0:02dd72d1d465 37 #include "rtos/EventFlags.h"
borlanic 0:02dd72d1d465 38 #include "rtos/ConditionVariable.h"
borlanic 0:02dd72d1d465 39
borlanic 0:02dd72d1d465 40 using namespace rtos;
borlanic 0:02dd72d1d465 41
borlanic 0:02dd72d1d465 42 /* Get mbed lib version number, as RTOS depends on mbed lib features
borlanic 0:02dd72d1d465 43 like mbed_error, Callback and others.
borlanic 0:02dd72d1d465 44 */
borlanic 0:02dd72d1d465 45 #include "mbed.h"
borlanic 0:02dd72d1d465 46
borlanic 0:02dd72d1d465 47 #endif
borlanic 0:02dd72d1d465 48
borlanic 0:02dd72d1d465 49 /** @}*/