IOTIO

Dependencies:   Nucleo_BLE_API_IOTIO Nucleo_BLE_BlueNRG Nucleo_BLE_DemoApp Nucleo_Sensor_Shield mbed

Dependents:   Nucleo_BLE_Demo_IOTIO

Fork of Nucleo_BLE_Demo by Cortex Challenge Team

Committer:
16038618
Date:
Sat Oct 29 15:11:28 2016 +0000
Revision:
1:4bdfa7d7e8bf
IOTIO

Who changed what in which revision?

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