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@0:82220227f4fa, 2008-04-08 (annotated)
- Committer:
- simon.ford@mbed.co.uk
- Date:
- Tue Apr 08 14:12:21 2008 +0000
- Revision:
- 0:82220227f4fa
- Child:
- 1:6b7f447ca868
A first develoment release of the mbed libraries
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 |
simon.ford@mbed.co.uk | 0:82220227f4fa | 2 | * Copyright (c) 2007-2008, sford |
simon.ford@mbed.co.uk | 0:82220227f4fa | 3 | */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 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 | 0:82220227f4fa | 7 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 8 | // Useful C libraries |
simon.ford@mbed.co.uk | 0:82220227f4fa | 9 | #include "stdio.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 10 | #include "stdlib.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 11 | #include "string.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 12 | #include "math.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 13 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 14 | #include "helper.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 15 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 16 | // mbed Debug libraries |
simon.ford@mbed.co.uk | 0:82220227f4fa | 17 | #include "Debug.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 18 | #include "stackheap.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" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 23 | #include "BusIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 24 | #include "BusOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 25 | #include "AnalogIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 26 | #include "AnalogOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 27 | #include "PwmOut.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 28 | #include "Serial.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 29 | #include "SPI.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 30 | #include "I2C.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 31 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 32 | // mbed Internal components |
simon.ford@mbed.co.uk | 0:82220227f4fa | 33 | #include "Timer.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 34 | #include "wait.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 35 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 36 | using namespace mbed; |
simon.ford@mbed.co.uk | 0:82220227f4fa | 37 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 38 | #endif |