mbed w/ spi bug fig

Dependents:   display-puck

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Mon Jun 30 05:45:07 2014 +0100
Revision:
244:7618f037e2de
Parent:
targets/hal/TARGET_NORDIC/TARGET_NRF51822/device.h@127:ce7cebc0511f
Synchronized with git revision eb364dacfeee33fb1575eb82f810a05c1f9c5015

Full URL: https://github.com/mbedmicro/mbed/commit/eb364dacfeee33fb1575eb82f810a05c1f9c5015/

[ARCH_BLE] target ARCH_BLE uses separate PinNames.h and device.h

Who changed what in which revision?

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