mbed library sources

Dependents:   frdm_kl05z_gpio_test

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Mon Jan 27 13:30:06 2014 +0000
Revision:
75:99bf659e4489
Synchronized with git revision 338215a1c508b397a32d830ffc830c6556509863

Full URL: https://github.com/mbedmicro/mbed/commit/338215a1c508b397a32d830ffc830c6556509863/

Fixed sleep and disabled semihosting on LPC11U35

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 75:99bf659e4489 1 /* mbed Microcontroller Library
mbed_official 75:99bf659e4489 2 * Copyright (c) 2006-2013 ARM Limited
mbed_official 75:99bf659e4489 3 *
mbed_official 75:99bf659e4489 4 * Licensed under the Apache License, Version 2.0 (the "License");
mbed_official 75:99bf659e4489 5 * you may not use this file except in compliance with the License.
mbed_official 75:99bf659e4489 6 * You may obtain a copy of the License at
mbed_official 75:99bf659e4489 7 *
mbed_official 75:99bf659e4489 8 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 75:99bf659e4489 9 *
mbed_official 75:99bf659e4489 10 * Unless required by applicable law or agreed to in writing, software
mbed_official 75:99bf659e4489 11 * distributed under the License is distributed on an "AS IS" BASIS,
mbed_official 75:99bf659e4489 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 75:99bf659e4489 13 * See the License for the specific language governing permissions and
mbed_official 75:99bf659e4489 14 * limitations under the License.
mbed_official 75:99bf659e4489 15 */
mbed_official 75:99bf659e4489 16 #ifndef MBED_DEVICE_H
mbed_official 75:99bf659e4489 17 #define MBED_DEVICE_H
mbed_official 75:99bf659e4489 18
mbed_official 75:99bf659e4489 19 #define DEVICE_PORTIN 1
mbed_official 75:99bf659e4489 20 #define DEVICE_PORTOUT 1
mbed_official 75:99bf659e4489 21 #define DEVICE_PORTINOUT 1
mbed_official 75:99bf659e4489 22
mbed_official 75:99bf659e4489 23 #define DEVICE_INTERRUPTIN 1
mbed_official 75:99bf659e4489 24
mbed_official 75:99bf659e4489 25 #define DEVICE_ANALOGIN 1
mbed_official 75:99bf659e4489 26 #define DEVICE_ANALOGOUT 0
mbed_official 75:99bf659e4489 27
mbed_official 75:99bf659e4489 28 #define DEVICE_SERIAL 1
mbed_official 75:99bf659e4489 29
mbed_official 75:99bf659e4489 30 #define DEVICE_I2C 1
mbed_official 75:99bf659e4489 31 #define DEVICE_I2CSLAVE 1
mbed_official 75:99bf659e4489 32
mbed_official 75:99bf659e4489 33 #define DEVICE_SPI 1
mbed_official 75:99bf659e4489 34 #define DEVICE_SPISLAVE 1
mbed_official 75:99bf659e4489 35
mbed_official 75:99bf659e4489 36 #define DEVICE_CAN 0
mbed_official 75:99bf659e4489 37
mbed_official 75:99bf659e4489 38 #define DEVICE_RTC 0
mbed_official 75:99bf659e4489 39
mbed_official 75:99bf659e4489 40 #define DEVICE_ETHERNET 0
mbed_official 75:99bf659e4489 41
mbed_official 75:99bf659e4489 42 #define DEVICE_PWMOUT 1
mbed_official 75:99bf659e4489 43
mbed_official 75:99bf659e4489 44 #define DEVICE_SEMIHOST 0
mbed_official 75:99bf659e4489 45 #define DEVICE_LOCALFILESYSTEM 0
mbed_official 75:99bf659e4489 46 #define DEVICE_ID_LENGTH 32
mbed_official 75:99bf659e4489 47 #define DEVICE_MAC_OFFSET 20
mbed_official 75:99bf659e4489 48
mbed_official 75:99bf659e4489 49 #define DEVICE_SLEEP 1
mbed_official 75:99bf659e4489 50
mbed_official 75:99bf659e4489 51 #define DEVICE_DEBUG_AWARENESS 0
mbed_official 75:99bf659e4489 52
mbed_official 75:99bf659e4489 53 #define DEVICE_STDIO_MESSAGES 0
mbed_official 75:99bf659e4489 54
mbed_official 75:99bf659e4489 55 #define DEVICE_ERROR_PATTERN 1
mbed_official 75:99bf659e4489 56
mbed_official 75:99bf659e4489 57 #include "objects.h"
mbed_official 75:99bf659e4489 58
mbed_official 75:99bf659e4489 59 #endif