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