Erste version der Software für der Prototyp

Committer:
borlanic
Date:
Fri Mar 30 14:07:05 2018 +0000
Revision:
4:75df35ef4fb6
Parent:
0:380207fcb5c1
commentar

Who changed what in which revision?

UserRevisionLine numberNew contents of line
borlanic 0:380207fcb5c1 1 /* mbed Microcontroller Library
borlanic 0:380207fcb5c1 2 * Copyright (c) 2006-2013 ARM Limited
borlanic 0:380207fcb5c1 3 *
borlanic 0:380207fcb5c1 4 * Licensed under the Apache License, Version 2.0 (the "License");
borlanic 0:380207fcb5c1 5 * you may not use this file except in compliance with the License.
borlanic 0:380207fcb5c1 6 * You may obtain a copy of the License at
borlanic 0:380207fcb5c1 7 *
borlanic 0:380207fcb5c1 8 * http://www.apache.org/licenses/LICENSE-2.0
borlanic 0:380207fcb5c1 9 *
borlanic 0:380207fcb5c1 10 * Unless required by applicable law or agreed to in writing, software
borlanic 0:380207fcb5c1 11 * distributed under the License is distributed on an "AS IS" BASIS,
borlanic 0:380207fcb5c1 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
borlanic 0:380207fcb5c1 13 * See the License for the specific language governing permissions and
borlanic 0:380207fcb5c1 14 * limitations under the License.
borlanic 0:380207fcb5c1 15 */
borlanic 0:380207fcb5c1 16 #ifndef MBED_H
borlanic 0:380207fcb5c1 17 #define MBED_H
borlanic 0:380207fcb5c1 18
borlanic 0:380207fcb5c1 19 #if MBED_CONF_RTOS_PRESENT
borlanic 0:380207fcb5c1 20 #include "rtos/rtos.h"
borlanic 0:380207fcb5c1 21 #endif
borlanic 0:380207fcb5c1 22
borlanic 0:380207fcb5c1 23 #if MBED_CONF_NSAPI_PRESENT
borlanic 0:380207fcb5c1 24 #include "netsocket/nsapi.h"
borlanic 0:380207fcb5c1 25 #include "netsocket/nsapi_ppp.h"
borlanic 0:380207fcb5c1 26 #endif
borlanic 0:380207fcb5c1 27
borlanic 0:380207fcb5c1 28 #if MBED_CONF_EVENTS_PRESENT
borlanic 0:380207fcb5c1 29 #include "events/mbed_events.h"
borlanic 0:380207fcb5c1 30 #endif
borlanic 0:380207fcb5c1 31
borlanic 0:380207fcb5c1 32 #if MBED_CONF_FILESYSTEM_PRESENT
borlanic 0:380207fcb5c1 33 #include "filesystem/mbed_filesystem.h"
borlanic 0:380207fcb5c1 34 #endif
borlanic 0:380207fcb5c1 35
borlanic 0:380207fcb5c1 36 #include "platform/mbed_toolchain.h"
borlanic 0:380207fcb5c1 37 #include "platform/platform.h"
borlanic 0:380207fcb5c1 38 #include "platform/mbed_application.h"
borlanic 0:380207fcb5c1 39
borlanic 0:380207fcb5c1 40 // Useful C libraries
borlanic 0:380207fcb5c1 41 #include <math.h>
borlanic 0:380207fcb5c1 42 #include <time.h>
borlanic 0:380207fcb5c1 43
borlanic 0:380207fcb5c1 44 // mbed Debug libraries
borlanic 0:380207fcb5c1 45 #include "platform/mbed_error.h"
borlanic 0:380207fcb5c1 46 #include "platform/mbed_interface.h"
borlanic 0:380207fcb5c1 47 #include "platform/mbed_assert.h"
borlanic 0:380207fcb5c1 48 #include "platform/mbed_debug.h"
borlanic 0:380207fcb5c1 49
borlanic 0:380207fcb5c1 50 // mbed Peripheral components
borlanic 0:380207fcb5c1 51 #include "drivers/DigitalIn.h"
borlanic 0:380207fcb5c1 52 #include "drivers/DigitalOut.h"
borlanic 0:380207fcb5c1 53 #include "drivers/DigitalInOut.h"
borlanic 0:380207fcb5c1 54 #include "drivers/BusIn.h"
borlanic 0:380207fcb5c1 55 #include "drivers/BusOut.h"
borlanic 0:380207fcb5c1 56 #include "drivers/BusInOut.h"
borlanic 0:380207fcb5c1 57 #include "drivers/PortIn.h"
borlanic 0:380207fcb5c1 58 #include "drivers/PortInOut.h"
borlanic 0:380207fcb5c1 59 #include "drivers/PortOut.h"
borlanic 0:380207fcb5c1 60 #include "drivers/AnalogIn.h"
borlanic 0:380207fcb5c1 61 #include "drivers/AnalogOut.h"
borlanic 0:380207fcb5c1 62 #include "drivers/PwmOut.h"
borlanic 0:380207fcb5c1 63 #include "drivers/Serial.h"
borlanic 0:380207fcb5c1 64 #include "drivers/SPI.h"
borlanic 0:380207fcb5c1 65 #include "drivers/SPISlave.h"
borlanic 0:380207fcb5c1 66 #include "drivers/I2C.h"
borlanic 0:380207fcb5c1 67 #include "drivers/I2CSlave.h"
borlanic 0:380207fcb5c1 68 #include "drivers/Ethernet.h"
borlanic 0:380207fcb5c1 69 #include "drivers/CAN.h"
borlanic 0:380207fcb5c1 70 #include "drivers/RawSerial.h"
borlanic 0:380207fcb5c1 71 #include "drivers/UARTSerial.h"
borlanic 0:380207fcb5c1 72 #include "drivers/FlashIAP.h"
borlanic 0:380207fcb5c1 73 #include "drivers/MbedCRC.h"
borlanic 0:380207fcb5c1 74
borlanic 0:380207fcb5c1 75 // mbed Internal components
borlanic 0:380207fcb5c1 76 #include "drivers/Timer.h"
borlanic 0:380207fcb5c1 77 #include "drivers/Ticker.h"
borlanic 0:380207fcb5c1 78 #include "drivers/Timeout.h"
borlanic 0:380207fcb5c1 79 #include "drivers/LowPowerTimeout.h"
borlanic 0:380207fcb5c1 80 #include "drivers/LowPowerTicker.h"
borlanic 0:380207fcb5c1 81 #include "drivers/LowPowerTimer.h"
borlanic 0:380207fcb5c1 82 #include "platform/LocalFileSystem.h"
borlanic 0:380207fcb5c1 83 #include "drivers/InterruptIn.h"
borlanic 0:380207fcb5c1 84 #include "platform/mbed_wait_api.h"
borlanic 0:380207fcb5c1 85 #include "hal/sleep_api.h"
borlanic 0:380207fcb5c1 86 #include "platform/mbed_power_mgmt.h"
borlanic 0:380207fcb5c1 87 #include "platform/mbed_rtc_time.h"
borlanic 0:380207fcb5c1 88 #include "platform/mbed_poll.h"
borlanic 0:380207fcb5c1 89 #include "platform/ATCmdParser.h"
borlanic 0:380207fcb5c1 90 #include "platform/FileSystemHandle.h"
borlanic 0:380207fcb5c1 91 #include "platform/FileHandle.h"
borlanic 0:380207fcb5c1 92 #include "platform/DirHandle.h"
borlanic 0:380207fcb5c1 93 #include "platform/CriticalSectionLock.h"
borlanic 0:380207fcb5c1 94 #include "platform/DeepSleepLock.h"
borlanic 0:380207fcb5c1 95
borlanic 0:380207fcb5c1 96 // mbed Non-hardware components
borlanic 0:380207fcb5c1 97 #include "platform/Callback.h"
borlanic 0:380207fcb5c1 98 #include "platform/FunctionPointer.h"
borlanic 0:380207fcb5c1 99 #include "platform/ScopedLock.h"
borlanic 0:380207fcb5c1 100
borlanic 0:380207fcb5c1 101 using namespace mbed;
borlanic 0:380207fcb5c1 102 using namespace std;
borlanic 0:380207fcb5c1 103
borlanic 0:380207fcb5c1 104 #endif