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 CRAC-Strat_2017_HOMOLOGATION_PETIT_ROBOT by
mbed/mbed.h@21:590cdacb6a35, 2017-05-25 (annotated)
- Committer:
- ClementBreteau
- Date:
- Thu May 25 06:34:53 2017 +0000
- Revision:
- 21:590cdacb6a35
- Parent:
- 0:ad97421fb1fb
homologation petit robot
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
antbig | 0:ad97421fb1fb | 1 | /* mbed Microcontroller Library |
antbig | 0:ad97421fb1fb | 2 | * Copyright (c) 2006-2011 ARM Limited. All rights reserved. |
antbig | 0:ad97421fb1fb | 3 | */ |
antbig | 0:ad97421fb1fb | 4 | |
antbig | 0:ad97421fb1fb | 5 | #ifndef MBED_H |
antbig | 0:ad97421fb1fb | 6 | #define MBED_H |
antbig | 0:ad97421fb1fb | 7 | |
antbig | 0:ad97421fb1fb | 8 | #define MBED_LIBRARY_VERSION 29 |
antbig | 0:ad97421fb1fb | 9 | |
antbig | 0:ad97421fb1fb | 10 | // Useful C libraries |
antbig | 0:ad97421fb1fb | 11 | #include <stdio.h> |
antbig | 0:ad97421fb1fb | 12 | #include <stdlib.h> |
antbig | 0:ad97421fb1fb | 13 | #include <string.h> |
antbig | 0:ad97421fb1fb | 14 | #include <math.h> |
antbig | 0:ad97421fb1fb | 15 | #include <time.h> |
antbig | 0:ad97421fb1fb | 16 | |
antbig | 0:ad97421fb1fb | 17 | // mbed Debug libraries |
antbig | 0:ad97421fb1fb | 18 | |
antbig | 0:ad97421fb1fb | 19 | #include "error.h" |
antbig | 0:ad97421fb1fb | 20 | #include "mbed_interface.h" |
antbig | 0:ad97421fb1fb | 21 | |
antbig | 0:ad97421fb1fb | 22 | // mbed Peripheral components |
antbig | 0:ad97421fb1fb | 23 | |
antbig | 0:ad97421fb1fb | 24 | #include "DigitalIn.h" |
antbig | 0:ad97421fb1fb | 25 | #include "DigitalOut.h" |
antbig | 0:ad97421fb1fb | 26 | #include "DigitalInOut.h" |
antbig | 0:ad97421fb1fb | 27 | #include "BusIn.h" |
antbig | 0:ad97421fb1fb | 28 | #include "BusOut.h" |
antbig | 0:ad97421fb1fb | 29 | #include "BusInOut.h" |
antbig | 0:ad97421fb1fb | 30 | #include "PortIn.h" |
antbig | 0:ad97421fb1fb | 31 | #include "PortInOut.h" |
antbig | 0:ad97421fb1fb | 32 | #include "PortOut.h" |
antbig | 0:ad97421fb1fb | 33 | #include "AnalogIn.h" |
antbig | 0:ad97421fb1fb | 34 | #include "AnalogOut.h" |
antbig | 0:ad97421fb1fb | 35 | #include "PwmOut.h" |
antbig | 0:ad97421fb1fb | 36 | #include "Serial.h" |
antbig | 0:ad97421fb1fb | 37 | #include "SerialHalfDuplex.h" |
antbig | 0:ad97421fb1fb | 38 | #include "SPI.h" |
antbig | 0:ad97421fb1fb | 39 | #include "SPISlave.h" |
antbig | 0:ad97421fb1fb | 40 | #include "SPIHalfDuplex.h" |
antbig | 0:ad97421fb1fb | 41 | #include "I2C.h" |
antbig | 0:ad97421fb1fb | 42 | #include "I2CSlave.h" |
antbig | 0:ad97421fb1fb | 43 | #include "Ethernet.h" |
antbig | 0:ad97421fb1fb | 44 | #include "CAN.h" |
antbig | 0:ad97421fb1fb | 45 | |
antbig | 0:ad97421fb1fb | 46 | // mbed Internal components |
antbig | 0:ad97421fb1fb | 47 | #include "Timer.h" |
antbig | 0:ad97421fb1fb | 48 | #include "Ticker.h" |
antbig | 0:ad97421fb1fb | 49 | #include "Timeout.h" |
antbig | 0:ad97421fb1fb | 50 | #include "LocalFileSystem.h" |
antbig | 0:ad97421fb1fb | 51 | #include "InterruptIn.h" |
antbig | 0:ad97421fb1fb | 52 | #include "wait_api.h" |
antbig | 0:ad97421fb1fb | 53 | #include "rtc_time.h" |
antbig | 0:ad97421fb1fb | 54 | |
antbig | 0:ad97421fb1fb | 55 | using namespace mbed; |
antbig | 0:ad97421fb1fb | 56 | using namespace std; |
antbig | 0:ad97421fb1fb | 57 | |
antbig | 0:ad97421fb1fb | 58 | #endif |
antbig | 0:ad97421fb1fb | 59 |