Entrega 3er corte - sistemas embebidos

Committer:
Bethory
Date:
Wed May 30 04:46:28 2018 +0000
Revision:
1:fcdb45ee95b9
Parent:
0:6ad07c9019fd
Entrega Final

Who changed what in which revision?

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