mbed library for NZ32-SC151

Committer:
modtronix-com
Date:
Mon Aug 15 14:57:08 2016 +1000
Revision:
16:076cbe3e55be
Parent:
1:71204b8406f2
Added tag v1.0 for changeset 8123a070ade6

Who changed what in which revision?

UserRevisionLine numberNew contents of line
modtronix 1:71204b8406f2 1 /* mbed Microcontroller Library
modtronix 1:71204b8406f2 2 * Copyright (c) 2006-2013 ARM Limited
modtronix 1:71204b8406f2 3 *
modtronix 1:71204b8406f2 4 * Licensed under the Apache License, Version 2.0 (the "License");
modtronix 1:71204b8406f2 5 * you may not use this file except in compliance with the License.
modtronix 1:71204b8406f2 6 * You may obtain a copy of the License at
modtronix 1:71204b8406f2 7 *
modtronix 1:71204b8406f2 8 * http://www.apache.org/licenses/LICENSE-2.0
modtronix 1:71204b8406f2 9 *
modtronix 1:71204b8406f2 10 * Unless required by applicable law or agreed to in writing, software
modtronix 1:71204b8406f2 11 * distributed under the License is distributed on an "AS IS" BASIS,
modtronix 1:71204b8406f2 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
modtronix 1:71204b8406f2 13 * See the License for the specific language governing permissions and
modtronix 1:71204b8406f2 14 * limitations under the License.
modtronix 1:71204b8406f2 15 */
modtronix 1:71204b8406f2 16 #ifndef MBED_H
modtronix 1:71204b8406f2 17 #define MBED_H
modtronix 1:71204b8406f2 18
modtronix 1:71204b8406f2 19 #define MBED_LIBRARY_VERSION 103
modtronix 1:71204b8406f2 20
modtronix 1:71204b8406f2 21 #include "platform.h"
modtronix 1:71204b8406f2 22
modtronix 1:71204b8406f2 23 // Useful C libraries
modtronix 1:71204b8406f2 24 #include <math.h>
modtronix 1:71204b8406f2 25 #include <time.h>
modtronix 1:71204b8406f2 26
modtronix 1:71204b8406f2 27 // mbed Debug libraries
modtronix 1:71204b8406f2 28 #include "mbed_error.h"
modtronix 1:71204b8406f2 29 #include "mbed_interface.h"
modtronix 1:71204b8406f2 30
modtronix 1:71204b8406f2 31 // mbed Peripheral components
modtronix 1:71204b8406f2 32 #include "DigitalIn.h"
modtronix 1:71204b8406f2 33 #include "DigitalOut.h"
modtronix 1:71204b8406f2 34 #include "DigitalInOut.h"
modtronix 1:71204b8406f2 35 #include "BusIn.h"
modtronix 1:71204b8406f2 36 #include "BusOut.h"
modtronix 1:71204b8406f2 37 #include "BusInOut.h"
modtronix 1:71204b8406f2 38 #include "PortIn.h"
modtronix 1:71204b8406f2 39 #include "PortInOut.h"
modtronix 1:71204b8406f2 40 #include "PortOut.h"
modtronix 1:71204b8406f2 41 #include "AnalogIn.h"
modtronix 1:71204b8406f2 42 #include "AnalogOut.h"
modtronix 1:71204b8406f2 43 #include "PwmOut.h"
modtronix 1:71204b8406f2 44 #include "Serial.h"
modtronix 1:71204b8406f2 45 #include "SPI.h"
modtronix 1:71204b8406f2 46 #include "SPISlave.h"
modtronix 1:71204b8406f2 47 #include "I2C.h"
modtronix 1:71204b8406f2 48 #include "I2CSlave.h"
modtronix 1:71204b8406f2 49 #include "Ethernet.h"
modtronix 1:71204b8406f2 50 #include "CAN.h"
modtronix 1:71204b8406f2 51 #include "RawSerial.h"
modtronix 1:71204b8406f2 52
modtronix 1:71204b8406f2 53 // mbed Internal components
modtronix 1:71204b8406f2 54 #include "Timer.h"
modtronix 1:71204b8406f2 55 #include "Ticker.h"
modtronix 1:71204b8406f2 56 #include "Timeout.h"
modtronix 1:71204b8406f2 57 #include "LowPowerTimeout.h"
modtronix 1:71204b8406f2 58 #include "LowPowerTicker.h"
modtronix 1:71204b8406f2 59 #include "LowPowerTimer.h"
modtronix 1:71204b8406f2 60 #include "LocalFileSystem.h"
modtronix 1:71204b8406f2 61 #include "InterruptIn.h"
modtronix 1:71204b8406f2 62 #include "wait_api.h"
modtronix 1:71204b8406f2 63 #include "sleep_api.h"
modtronix 1:71204b8406f2 64 #include "rtc_time.h"
modtronix 1:71204b8406f2 65
modtronix 1:71204b8406f2 66 using namespace mbed;
modtronix 1:71204b8406f2 67 using namespace std;
modtronix 1:71204b8406f2 68
modtronix 1:71204b8406f2 69 #endif