mbed libraries for KL25Z

Dependents:   FRDM_RGBLED

Committer:
emilmont
Date:
Fri Nov 09 11:33:53 2012 +0000
Revision:
8:c14af7958ef5
Parent:
7:73c5efe92a6c
Child:
9:663789d7729f
SPI driver; ADC driver; DAC driver; microlib support; general bugfixing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 2:e9a661555b58 1 /* mbed Microcontroller Library - platform
emilmont 2:e9a661555b58 2 * Copyright (c) 2009 ARM Limited. All rights reserved.
emilmont 7:73c5efe92a6c 3 */
emilmont 2:e9a661555b58 4 #ifndef MBED_PLATFORM_H
emilmont 2:e9a661555b58 5 #define MBED_PLATFORM_H
emilmont 2:e9a661555b58 6
emilmont 2:e9a661555b58 7 #define MBED_OPERATORS 1
emilmont 2:e9a661555b58 8
emilmont 8:c14af7958ef5 9 #include "device.h"
emilmont 8:c14af7958ef5 10 #include "PinNames.h"
emilmont 8:c14af7958ef5 11 #include "PeripheralNames.h"
emilmont 8:c14af7958ef5 12
emilmont 8:c14af7958ef5 13 #include <cstddef>
emilmont 8:c14af7958ef5 14 #include <cstdlib>
emilmont 8:c14af7958ef5 15 #include <cstdio>
emilmont 8:c14af7958ef5 16 #include <cstring>
emilmont 8:c14af7958ef5 17
emilmont 2:e9a661555b58 18 #endif