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