mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Wed Jun 11 15:14:05 2014 +0100
Revision:
85:024bf7f99721
Release 85 of the mbed library

Main changes:

- K64F Ethernet fixes
- Updated tests
- Fixes for various mbed targets
- Code cleanup: fixed warnings, more consistent code style
- GCC support for K64F

There is a known issue with the I2C interface on some ST targets. If you
find the I2C interface problematic on your ST board, please log a bug
against this on mbed.org.

Who changed what in which revision?

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