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

Dependents:   NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more

Fork of mbed by mbed official

Committer:
simon.ford@mbed.co.uk
Date:
Thu Nov 27 16:23:24 2008 +0000
Revision:
4:5d1359a283bc
Parent:
3:aefd12a1f1c5
Child:
5:62573be585e9
New version of framework: vectors, environment, platform, base and file system

Who changed what in which revision?

UserRevisionLine numberNew 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 4:5d1359a283bc 9 #include <stdio.h>
simon.ford@mbed.co.uk 4:5d1359a283bc 10 #include <stdlib.h>
simon.ford@mbed.co.uk 4:5d1359a283bc 11 #include <string.h>
simon.ford@mbed.co.uk 4:5d1359a283bc 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 3:aefd12a1f1c5 35 #include "Ticker.h"
simon.ford@mbed.co.uk 3:aefd12a1f1c5 36 #include "Timeout.h"
simon.ford@mbed.co.uk 4:5d1359a283bc 37 #include "LocalFileSystem.h"
simon.ford@mbed.co.uk 0:82220227f4fa 38
simon.ford@mbed.co.uk 0:82220227f4fa 39 using namespace mbed;
simon.ford@mbed.co.uk 0:82220227f4fa 40
simon.ford@mbed.co.uk 1:6b7f447ca868 41 #endif
simon.ford@mbed.co.uk 1:6b7f447ca868 42