...
Dependents: 2doejemplo Labo_TRSE_Drone
Fork of mbed by
mbed.h@11:1c1ebd0324fa, 2009-08-28 (annotated)
- Committer:
- rolf.meyer@arm.com
- Date:
- Fri Aug 28 12:10:11 2009 +0000
- Revision:
- 11:1c1ebd0324fa
- Parent:
- 10:fcb9359f0959
- Child:
- 12:f63353af7be8
A shiny new version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
simon.ford@mbed.co.uk | 0:82220227f4fa | 1 | /* mbed Microcontroller Library |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 2 | * Copyright (c) 2006-2009 ARM Limited. All rights reserved. |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 3 | * sford |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 4 | */ |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 5 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 6 | #ifndef MBED_H |
simon.ford@mbed.co.uk | 0:82220227f4fa | 7 | #define MBED_H |
simon.ford@mbed.co.uk | 5:62573be585e9 | 8 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 9 | #define MBED_LIBRARY_VERSION 12 |
simon.ford@mbed.co.uk | 0:82220227f4fa | 10 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 11 | // Useful C libraries |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 12 | #include <stdio.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 13 | #include <stdlib.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 14 | #include <string.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 15 | #include <math.h> |
simon.ford@mbed.co.uk | 0:82220227f4fa | 16 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 17 | //#include "helper.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 18 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 19 | // mbed Debug libraries |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 20 | //#include "Debug.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 21 | //#include "stackheap.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 22 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 23 | // mbed Peripheral components |
simon.ford@mbed.co.uk | 0:82220227f4fa | 24 | #include "DigitalIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 25 | #include "DigitalOut.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 26 | #include "DigitalInOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 27 | #include "BusIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 28 | #include "BusOut.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 29 | #include "BusInOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 30 | #include "AnalogIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 31 | #include "AnalogOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 32 | #include "PwmOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 33 | #include "Serial.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 34 | #include "SPI.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 35 | //#include "SPI3.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 36 | #include "I2C.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 37 | #include "Ethernet.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 38 | #include "CAN.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 39 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 40 | // mbed Internal components |
simon.ford@mbed.co.uk | 0:82220227f4fa | 41 | #include "Timer.h" |
simon.ford@mbed.co.uk | 3:aefd12a1f1c5 | 42 | #include "Ticker.h" |
simon.ford@mbed.co.uk | 3:aefd12a1f1c5 | 43 | #include "Timeout.h" |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 44 | #include "LocalFileSystem.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 45 | #include "InterruptIn.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 46 | //#include "rpc.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 47 | //#include "rtc.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 48 | #include "wait_api.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 49 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 50 | using namespace mbed; |
simon.ford@mbed.co.uk | 10:fcb9359f0959 | 51 | using namespace std; |
simon.ford@mbed.co.uk | 0:82220227f4fa | 52 | |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 53 | #endif |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 54 |