initial

Dependencies:   mbed

Committer:
yihui
Date:
Mon Jan 11 02:32:24 2016 +0000
Revision:
0:638edba3adf6
initial

Who changed what in which revision?

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