test

Dependents:   robotic_fish_6

Committer:
juansal12
Date:
Fri Dec 03 23:00:34 2021 +0000
Revision:
0:c792b17d9f78
uploaded sofi code ;

Who changed what in which revision?

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