Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications. The fork has the documentation converted to Doxygen format
Fork of mbed by
mbed.h@17:49a220cc26e0, 2009-12-01 (annotated)
- Committer:
- simon.ford@mbed.co.uk
- Date:
- Tue Dec 01 14:24:15 2009 +0000
- Revision:
- 17:49a220cc26e0
- Parent:
- 14:20a79241b4a0
- Child:
- 18:b3c9f16cbb96
* Update LPC1768 clock to 96MHz
* Update Serial to support up to 921600 baud
* Fix USB clock divider and base address
* Improve stackheap model and enforce alignment
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 | */ |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 4 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 5 | #ifndef MBED_H |
simon.ford@mbed.co.uk | 0:82220227f4fa | 6 | #define MBED_H |
simon.ford@mbed.co.uk | 5:62573be585e9 | 7 | |
simon.ford@mbed.co.uk | 17:49a220cc26e0 | 8 | #define MBED_LIBRARY_VERSION 19 |
simon.ford@mbed.co.uk | 0:82220227f4fa | 9 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 10 | // Useful C libraries |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 11 | #include <stdio.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 12 | #include <stdlib.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 13 | #include <string.h> |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 14 | #include <math.h> |
rolf.meyer@arm.com | 14:20a79241b4a0 | 15 | #include <time.h> |
simon.ford@mbed.co.uk | 0:82220227f4fa | 16 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 17 | // mbed Debug libraries |
rolf.meyer@arm.com | 12:f63353af7be8 | 18 | #include "error.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 19 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 20 | // mbed Peripheral components |
simon.ford@mbed.co.uk | 0:82220227f4fa | 21 | #include "DigitalIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 22 | #include "DigitalOut.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 23 | #include "DigitalInOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 24 | #include "BusIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 25 | #include "BusOut.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 26 | #include "BusInOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 27 | #include "AnalogIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 28 | #include "AnalogOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 29 | #include "PwmOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 30 | #include "Serial.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 31 | #include "SPI.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 32 | #include "I2C.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 33 | #include "Ethernet.h" |
rolf.meyer@arm.com | 14:20a79241b4a0 | 34 | #include "CAN.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 35 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 36 | // mbed Internal components |
simon.ford@mbed.co.uk | 0:82220227f4fa | 37 | #include "Timer.h" |
simon.ford@mbed.co.uk | 3:aefd12a1f1c5 | 38 | #include "Ticker.h" |
simon.ford@mbed.co.uk | 3:aefd12a1f1c5 | 39 | #include "Timeout.h" |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 40 | #include "LocalFileSystem.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 41 | #include "InterruptIn.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 42 | #include "wait_api.h" |
rolf.meyer@arm.com | 14:20a79241b4a0 | 43 | #include "rtc_time.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 44 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 45 | using namespace mbed; |
simon.ford@mbed.co.uk | 10:fcb9359f0959 | 46 | using namespace std; |
simon.ford@mbed.co.uk | 0:82220227f4fa | 47 | |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 48 | #endif |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 49 |