mbed library sources. Supersedes mbed-src.
Fork of mbed-dev by
api/mbed.h@13:da2ea05f91cf, 2015-10-29 (annotated)
- Committer:
- mbed_official
- Date:
- Thu Oct 29 12:00:09 2015 +0000
- Revision:
- 13:da2ea05f91cf
- Parent:
- 1:a46deec61bf5
- Child:
- 27:affb46b27b47
Synchronized with git revision 6bdf53a4e8cce7f608b34507fff0de50d586af01
Full URL: https://github.com/mbedmicro/mbed/commit/6bdf53a4e8cce7f608b34507fff0de50d586af01/
Fix in analogin - DK target does not provide the pins
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 0:9b334a45a8ff | 1 | /* mbed Microcontroller Library |
bogdanm | 0:9b334a45a8ff | 2 | * Copyright (c) 2006-2013 ARM Limited |
bogdanm | 0:9b334a45a8ff | 3 | * |
bogdanm | 0:9b334a45a8ff | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
bogdanm | 0:9b334a45a8ff | 5 | * you may not use this file except in compliance with the License. |
bogdanm | 0:9b334a45a8ff | 6 | * You may obtain a copy of the License at |
bogdanm | 0:9b334a45a8ff | 7 | * |
bogdanm | 0:9b334a45a8ff | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
bogdanm | 0:9b334a45a8ff | 9 | * |
bogdanm | 0:9b334a45a8ff | 10 | * Unless required by applicable law or agreed to in writing, software |
bogdanm | 0:9b334a45a8ff | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
bogdanm | 0:9b334a45a8ff | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
bogdanm | 0:9b334a45a8ff | 13 | * See the License for the specific language governing permissions and |
bogdanm | 0:9b334a45a8ff | 14 | * limitations under the License. |
bogdanm | 0:9b334a45a8ff | 15 | */ |
bogdanm | 0:9b334a45a8ff | 16 | #ifndef MBED_H |
bogdanm | 0:9b334a45a8ff | 17 | #define MBED_H |
bogdanm | 0:9b334a45a8ff | 18 | |
mbed_official | 13:da2ea05f91cf | 19 | #define MBED_LIBRARY_VERSION 109 |
bogdanm | 0:9b334a45a8ff | 20 | |
bogdanm | 0:9b334a45a8ff | 21 | #include "platform.h" |
bogdanm | 0:9b334a45a8ff | 22 | |
bogdanm | 0:9b334a45a8ff | 23 | // Useful C libraries |
bogdanm | 0:9b334a45a8ff | 24 | #include <math.h> |
bogdanm | 0:9b334a45a8ff | 25 | #include <time.h> |
bogdanm | 0:9b334a45a8ff | 26 | |
bogdanm | 0:9b334a45a8ff | 27 | // mbed Debug libraries |
bogdanm | 0:9b334a45a8ff | 28 | #include "mbed_error.h" |
bogdanm | 0:9b334a45a8ff | 29 | #include "mbed_interface.h" |
bogdanm | 0:9b334a45a8ff | 30 | |
bogdanm | 0:9b334a45a8ff | 31 | // mbed Peripheral components |
bogdanm | 0:9b334a45a8ff | 32 | #include "DigitalIn.h" |
bogdanm | 0:9b334a45a8ff | 33 | #include "DigitalOut.h" |
bogdanm | 0:9b334a45a8ff | 34 | #include "DigitalInOut.h" |
bogdanm | 0:9b334a45a8ff | 35 | #include "BusIn.h" |
bogdanm | 0:9b334a45a8ff | 36 | #include "BusOut.h" |
bogdanm | 0:9b334a45a8ff | 37 | #include "BusInOut.h" |
bogdanm | 0:9b334a45a8ff | 38 | #include "PortIn.h" |
bogdanm | 0:9b334a45a8ff | 39 | #include "PortInOut.h" |
bogdanm | 0:9b334a45a8ff | 40 | #include "PortOut.h" |
bogdanm | 0:9b334a45a8ff | 41 | #include "AnalogIn.h" |
bogdanm | 0:9b334a45a8ff | 42 | #include "AnalogOut.h" |
bogdanm | 0:9b334a45a8ff | 43 | #include "PwmOut.h" |
bogdanm | 0:9b334a45a8ff | 44 | #include "Serial.h" |
bogdanm | 0:9b334a45a8ff | 45 | #include "SPI.h" |
bogdanm | 0:9b334a45a8ff | 46 | #include "SPISlave.h" |
bogdanm | 0:9b334a45a8ff | 47 | #include "I2C.h" |
bogdanm | 0:9b334a45a8ff | 48 | #include "I2CSlave.h" |
bogdanm | 0:9b334a45a8ff | 49 | #include "Ethernet.h" |
bogdanm | 0:9b334a45a8ff | 50 | #include "CAN.h" |
bogdanm | 0:9b334a45a8ff | 51 | #include "RawSerial.h" |
bogdanm | 0:9b334a45a8ff | 52 | |
bogdanm | 0:9b334a45a8ff | 53 | // mbed Internal components |
bogdanm | 0:9b334a45a8ff | 54 | #include "Timer.h" |
bogdanm | 0:9b334a45a8ff | 55 | #include "Ticker.h" |
bogdanm | 0:9b334a45a8ff | 56 | #include "Timeout.h" |
bogdanm | 0:9b334a45a8ff | 57 | #include "LowPowerTimeout.h" |
bogdanm | 0:9b334a45a8ff | 58 | #include "LowPowerTicker.h" |
bogdanm | 0:9b334a45a8ff | 59 | #include "LowPowerTimer.h" |
bogdanm | 0:9b334a45a8ff | 60 | #include "LocalFileSystem.h" |
bogdanm | 0:9b334a45a8ff | 61 | #include "InterruptIn.h" |
bogdanm | 0:9b334a45a8ff | 62 | #include "wait_api.h" |
bogdanm | 0:9b334a45a8ff | 63 | #include "sleep_api.h" |
bogdanm | 0:9b334a45a8ff | 64 | #include "rtc_time.h" |
bogdanm | 0:9b334a45a8ff | 65 | |
bogdanm | 0:9b334a45a8ff | 66 | using namespace mbed; |
bogdanm | 0:9b334a45a8ff | 67 | using namespace std; |
bogdanm | 0:9b334a45a8ff | 68 | |
bogdanm | 0:9b334a45a8ff | 69 | #endif |