Thierry Pébayle / mbed-STM32F030K6

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Thu Jun 11 09:15:08 2015 +0100
Revision:
566:24a7119bd73a
Parent:
524:c0134becc221
Synchronized with git revision 81af347389b2b87a85b1826ac315c8120e1db1a9

Full URL: https://github.com/mbedmicro/mbed/commit/81af347389b2b87a85b1826ac315c8120e1db1a9/

SPI - transfer() unification

Who changed what in which revision?

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