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