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 mbed by
mbed.h@12:f63353af7be8, 2009-09-03 (annotated)
- Committer:
- rolf.meyer@arm.com
- Date:
- Thu Sep 03 18:03:51 2009 +0000
- Revision:
- 12:f63353af7be8
- Parent:
- 11:1c1ebd0324fa
- Child:
- 14:20a79241b4a0
Some missing changes ;-)
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 | 12:f63353af7be8 | 9 | #define MBED_LIBRARY_VERSION 13 |
| 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" |
| rolf.meyer@arm.com | 12:f63353af7be8 | 22 | #include "error.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 23 | |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 24 | // mbed Peripheral components |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 25 | #include "DigitalIn.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 26 | #include "DigitalOut.h" |
| rolf.meyer@arm.com | 11:1c1ebd0324fa | 27 | #include "DigitalInOut.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 28 | #include "BusIn.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 29 | #include "BusOut.h" |
| rolf.meyer@arm.com | 11:1c1ebd0324fa | 30 | #include "BusInOut.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 31 | #include "AnalogIn.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 32 | #include "AnalogOut.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 33 | #include "PwmOut.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 34 | #include "Serial.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 35 | #include "SPI.h" |
| rolf.meyer@arm.com | 11:1c1ebd0324fa | 36 | //#include "SPI3.h" |
| simon.ford@mbed.co.uk | 0:82220227f4fa | 37 | #include "I2C.h" |
| rolf.meyer@arm.com | 11:1c1ebd0324fa | 38 | #include "Ethernet.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 |
