4545

Dependents:   LSS_Rev_1

Fork of mbed-dev by Umar Naeem

Committer:
<>
Date:
Fri Oct 28 11:17:30 2016 +0100
Revision:
149:156823d33999
Child:
150:02e0a0aed4ec
This updates the lib to the mbed lib v128

NOTE: This release includes a restructuring of the file and directory locations and thus some
include paths in your code may need updating accordingly.

Who changed what in which revision?

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