Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of TUKS-COURSE-TIMER by
mbed.h
00001 /* mbed Microcontroller Library 00002 * Copyright (c) 2006-2013 ARM Limited 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 #ifndef MBED_H 00017 #define MBED_H 00018 00019 #define MBED_LIBRARY_VERSION 136 00020 00021 #if MBED_CONF_RTOS_PRESENT 00022 // RTOS present, this is valid only for mbed OS 5 00023 #define MBED_MAJOR_VERSION 5 00024 #define MBED_MINOR_VERSION 3 00025 #define MBED_PATCH_VERSION 5 00026 00027 #else 00028 // mbed 2 00029 #define MBED_MAJOR_VERSION 2 00030 #define MBED_MINOR_VERSION 0 00031 #define MBED_PATCH_VERSION MBED_LIBRARY_VERSION 00032 #endif 00033 00034 #define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch)) 00035 00036 #define MBED_VERSION MBED_ENCODE_VERSION(MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION) 00037 00038 #if MBED_CONF_RTOS_PRESENT 00039 #include "rtos/rtos.h" 00040 #endif 00041 00042 #if MBED_CONF_NSAPI_PRESENT 00043 #include "netsocket/nsapi.h" 00044 #endif 00045 00046 #if MBED_CONF_EVENTS_PRESENT 00047 #include "events/mbed_events.h" 00048 #endif 00049 00050 #include "platform/toolchain.h" 00051 #include "platform/platform.h" 00052 00053 // Useful C libraries 00054 #include <math.h> 00055 #include <time.h> 00056 00057 // mbed Debug libraries 00058 #include "platform/mbed_error.h" 00059 #include "platform/mbed_interface.h" 00060 #include "platform/mbed_assert.h" 00061 00062 // mbed Peripheral components 00063 #include "drivers/DigitalIn.h" 00064 #include "drivers/DigitalOut.h" 00065 #include "drivers/DigitalInOut.h" 00066 #include "drivers/BusIn.h" 00067 #include "drivers/BusOut.h" 00068 #include "drivers/BusInOut.h" 00069 #include "drivers/PortIn.h" 00070 #include "drivers/PortInOut.h" 00071 #include "drivers/PortOut.h" 00072 #include "drivers/AnalogIn.h" 00073 #include "drivers/AnalogOut.h" 00074 #include "drivers/PwmOut.h" 00075 #include "drivers/Serial.h" 00076 #include "drivers/SPI.h" 00077 #include "drivers/SPISlave.h" 00078 #include "drivers/I2C.h" 00079 #include "drivers/I2CSlave.h" 00080 #include "drivers/Ethernet.h" 00081 #include "drivers/CAN.h" 00082 #include "drivers/RawSerial.h" 00083 00084 // mbed Internal components 00085 #include "drivers/Timer.h" 00086 #include "drivers/Ticker.h" 00087 #include "drivers/Timeout.h" 00088 #include "drivers/LowPowerTimeout.h" 00089 #include "drivers/LowPowerTicker.h" 00090 #include "drivers/LowPowerTimer.h" 00091 #include "drivers/LocalFileSystem.h" 00092 #include "drivers/InterruptIn.h" 00093 #include "platform/wait_api.h" 00094 #include "hal/sleep_api.h" 00095 #include "platform/rtc_time.h" 00096 00097 // mbed Non-hardware components 00098 #include "platform/Callback.h" 00099 #include "platform/FunctionPointer.h" 00100 00101 using namespace mbed; 00102 using namespace std; 00103 00104 #endif
Generated on Tue Jul 12 2022 17:38:48 by
