mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-05-04 17:21:25 +03:00
18 lines
305 B
C++
18 lines
305 B
C++
/* mbed Microcontroller Library
|
|
* Copyright (c) 2006-2012 ARM Limited. All rights reserved.
|
|
*/
|
|
#ifndef RTOS_H
|
|
#define RTOS_H
|
|
|
|
#include "Thread.h"
|
|
#include "Mutex.h"
|
|
#include "RtosTimer.h"
|
|
#include "Semaphore.h"
|
|
#include "Mail.h"
|
|
#include "MemoryPool.h"
|
|
#include "Queue.h"
|
|
|
|
using namespace rtos;
|
|
|
|
#endif
|