Maxim mbed development library

Dependents:   MAX34417_demo MAXREFDES1265 MAXREFDES1265

Fork of mbed-dev by mbed official

Committer:
switches
Date:
Fri Mar 24 15:15:13 2017 +0000
Revision:
164:2e7515f8c45d
Parent:
159:612c381a210f
Added low level init to clear IO registers

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 * Copyright (c) 2006-2013 ARM Limited
<> 149:156823d33999 3 *
<> 149:156823d33999 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 149:156823d33999 5 * you may not use this file except in compliance with the License.
<> 149:156823d33999 6 * You may obtain a copy of the License at
<> 149:156823d33999 7 *
<> 149:156823d33999 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 149:156823d33999 9 *
<> 149:156823d33999 10 * Unless required by applicable law or agreed to in writing, software
<> 149:156823d33999 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 149:156823d33999 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 149:156823d33999 13 * See the License for the specific language governing permissions and
<> 149:156823d33999 14 * limitations under the License.
<> 149:156823d33999 15 */
<> 149:156823d33999 16 #ifndef MBED_H
<> 149:156823d33999 17 #define MBED_H
<> 149:156823d33999 18
<> 159:612c381a210f 19 #define MBED_LIBRARY_VERSION 137
<> 151:5eaa88a5bcc7 20
<> 151:5eaa88a5bcc7 21 #if MBED_CONF_RTOS_PRESENT
<> 151:5eaa88a5bcc7 22 // RTOS present, this is valid only for mbed OS 5
<> 151:5eaa88a5bcc7 23 #define MBED_MAJOR_VERSION 5
<> 152:9a67f0b066fc 24 #define MBED_MINOR_VERSION 3
<> 159:612c381a210f 25 #define MBED_PATCH_VERSION 6
<> 151:5eaa88a5bcc7 26
<> 151:5eaa88a5bcc7 27 #else
<> 151:5eaa88a5bcc7 28 // mbed 2
<> 151:5eaa88a5bcc7 29 #define MBED_MAJOR_VERSION 2
<> 151:5eaa88a5bcc7 30 #define MBED_MINOR_VERSION 0
<> 151:5eaa88a5bcc7 31 #define MBED_PATCH_VERSION MBED_LIBRARY_VERSION
<> 151:5eaa88a5bcc7 32 #endif
<> 151:5eaa88a5bcc7 33
<> 151:5eaa88a5bcc7 34 #define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch))
<> 151:5eaa88a5bcc7 35
<> 151:5eaa88a5bcc7 36 #define MBED_VERSION MBED_ENCODE_VERSION(MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION)
<> 149:156823d33999 37
<> 149:156823d33999 38 #if MBED_CONF_RTOS_PRESENT
<> 149:156823d33999 39 #include "rtos/rtos.h"
<> 149:156823d33999 40 #endif
<> 149:156823d33999 41
<> 149:156823d33999 42 #if MBED_CONF_NSAPI_PRESENT
<> 149:156823d33999 43 #include "netsocket/nsapi.h"
<> 149:156823d33999 44 #endif
<> 149:156823d33999 45
<> 149:156823d33999 46 #if MBED_CONF_EVENTS_PRESENT
<> 149:156823d33999 47 #include "events/mbed_events.h"
<> 149:156823d33999 48 #endif
<> 149:156823d33999 49
<> 149:156823d33999 50 #include "platform/toolchain.h"
<> 149:156823d33999 51 #include "platform/platform.h"
<> 149:156823d33999 52
<> 149:156823d33999 53 // Useful C libraries
<> 149:156823d33999 54 #include <math.h>
<> 149:156823d33999 55 #include <time.h>
<> 149:156823d33999 56
<> 149:156823d33999 57 // mbed Debug libraries
<> 149:156823d33999 58 #include "platform/mbed_error.h"
<> 149:156823d33999 59 #include "platform/mbed_interface.h"
<> 149:156823d33999 60 #include "platform/mbed_assert.h"
<> 149:156823d33999 61
<> 149:156823d33999 62 // mbed Peripheral components
<> 149:156823d33999 63 #include "drivers/DigitalIn.h"
<> 149:156823d33999 64 #include "drivers/DigitalOut.h"
<> 149:156823d33999 65 #include "drivers/DigitalInOut.h"
<> 149:156823d33999 66 #include "drivers/BusIn.h"
<> 149:156823d33999 67 #include "drivers/BusOut.h"
<> 149:156823d33999 68 #include "drivers/BusInOut.h"
<> 149:156823d33999 69 #include "drivers/PortIn.h"
<> 149:156823d33999 70 #include "drivers/PortInOut.h"
<> 149:156823d33999 71 #include "drivers/PortOut.h"
<> 149:156823d33999 72 #include "drivers/AnalogIn.h"
<> 149:156823d33999 73 #include "drivers/AnalogOut.h"
<> 149:156823d33999 74 #include "drivers/PwmOut.h"
<> 149:156823d33999 75 #include "drivers/Serial.h"
<> 149:156823d33999 76 #include "drivers/SPI.h"
<> 149:156823d33999 77 #include "drivers/SPISlave.h"
<> 149:156823d33999 78 #include "drivers/I2C.h"
<> 149:156823d33999 79 #include "drivers/I2CSlave.h"
<> 149:156823d33999 80 #include "drivers/Ethernet.h"
<> 149:156823d33999 81 #include "drivers/CAN.h"
<> 149:156823d33999 82 #include "drivers/RawSerial.h"
<> 149:156823d33999 83
<> 149:156823d33999 84 // mbed Internal components
<> 149:156823d33999 85 #include "drivers/Timer.h"
<> 149:156823d33999 86 #include "drivers/Ticker.h"
<> 149:156823d33999 87 #include "drivers/Timeout.h"
<> 149:156823d33999 88 #include "drivers/LowPowerTimeout.h"
<> 149:156823d33999 89 #include "drivers/LowPowerTicker.h"
<> 149:156823d33999 90 #include "drivers/LowPowerTimer.h"
<> 149:156823d33999 91 #include "drivers/LocalFileSystem.h"
<> 149:156823d33999 92 #include "drivers/InterruptIn.h"
<> 149:156823d33999 93 #include "platform/wait_api.h"
<> 149:156823d33999 94 #include "hal/sleep_api.h"
<> 149:156823d33999 95 #include "platform/rtc_time.h"
<> 149:156823d33999 96
<> 149:156823d33999 97 // mbed Non-hardware components
<> 149:156823d33999 98 #include "platform/Callback.h"
<> 149:156823d33999 99 #include "platform/FunctionPointer.h"
<> 149:156823d33999 100
<> 149:156823d33999 101 using namespace mbed;
<> 149:156823d33999 102 using namespace std;
<> 149:156823d33999 103
<> 149:156823d33999 104 #endif