mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Apr 07 18:28:36 2014 +0100
Revision:
82:6473597d706e
Child:
90:cb3d968589d8
Release 82 of the mbed library

Main changes:

- support for K64F
- Revisited Nordic code structure
- Test infrastructure improvements
- various bug fixes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 82:6473597d706e 1 /*
bogdanm 82:6473597d706e 2 * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
bogdanm 82:6473597d706e 3 * All rights reserved.
bogdanm 82:6473597d706e 4 *
bogdanm 82:6473597d706e 5 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 82:6473597d706e 6 * are permitted provided that the following conditions are met:
bogdanm 82:6473597d706e 7 *
bogdanm 82:6473597d706e 8 * o Redistributions of source code must retain the above copyright notice, this list
bogdanm 82:6473597d706e 9 * of conditions and the following disclaimer.
bogdanm 82:6473597d706e 10 *
bogdanm 82:6473597d706e 11 * o Redistributions in binary form must reproduce the above copyright notice, this
bogdanm 82:6473597d706e 12 * list of conditions and the following disclaimer in the documentation and/or
bogdanm 82:6473597d706e 13 * other materials provided with the distribution.
bogdanm 82:6473597d706e 14 *
bogdanm 82:6473597d706e 15 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
bogdanm 82:6473597d706e 16 * contributors may be used to endorse or promote products derived from this
bogdanm 82:6473597d706e 17 * software without specific prior written permission.
bogdanm 82:6473597d706e 18 *
bogdanm 82:6473597d706e 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
bogdanm 82:6473597d706e 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
bogdanm 82:6473597d706e 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 82:6473597d706e 22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
bogdanm 82:6473597d706e 23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
bogdanm 82:6473597d706e 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
bogdanm 82:6473597d706e 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
bogdanm 82:6473597d706e 26 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
bogdanm 82:6473597d706e 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
bogdanm 82:6473597d706e 28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 82:6473597d706e 29 */
bogdanm 82:6473597d706e 30 #ifndef __FSL_SMC_FEATURES_H__
bogdanm 82:6473597d706e 31 #define __FSL_SMC_FEATURES_H__
bogdanm 82:6473597d706e 32
bogdanm 82:6473597d706e 33 #if (defined(CPU_MKL25Z32VFM4) || defined(CPU_MKL25Z64VFM4) || defined(CPU_MKL25Z128VFM4) || \
bogdanm 82:6473597d706e 34 defined(CPU_MKL25Z32VFT4) || defined(CPU_MKL25Z64VFT4) || defined(CPU_MKL25Z128VFT4) || \
bogdanm 82:6473597d706e 35 defined(CPU_MKL25Z32VLH4) || defined(CPU_MKL25Z64VLH4) || defined(CPU_MKL25Z128VLH4) || \
bogdanm 82:6473597d706e 36 defined(CPU_MKL25Z32VLK4) || defined(CPU_MKL25Z64VLK4) || defined(CPU_MKL25Z128VLK4))
bogdanm 82:6473597d706e 37 #define FSL_FEATURE_SMC_HAS_PSTOPO (0)
bogdanm 82:6473597d706e 38 #define FSL_FEATURE_SMC_HAS_LPOPO (0)
bogdanm 82:6473597d706e 39 #define FSL_FEATURE_SMC_HAS_PORPO (0)
bogdanm 82:6473597d706e 40 #define FSL_FEATURE_SMC_HAS_LPWUI (0)
bogdanm 82:6473597d706e 41 #define FSL_FEATURE_SMC_HAS_LLS_SUBMODE (0)
bogdanm 82:6473597d706e 42 #define FSL_FEATURE_SMC_USE_VLLSCTRL_REG (0)
bogdanm 82:6473597d706e 43 #define FSL_FEATURE_SMC_USE_STOPCTRL_VLLSM (1)
bogdanm 82:6473597d706e 44 #elif (defined(CPU_MK70FN1M0VMJ12) || defined(CPU_MK70FX512VMJ12) || \
bogdanm 82:6473597d706e 45 defined(CPU_MK70FN1M0VMJ15) || defined(CPU_MK70FX512VMJ15))
bogdanm 82:6473597d706e 46 #define FSL_FEATURE_SMC_HAS_PSTOPO (0)
bogdanm 82:6473597d706e 47 #define FSL_FEATURE_SMC_HAS_LPOPO (0)
bogdanm 82:6473597d706e 48 #define FSL_FEATURE_SMC_HAS_PORPO (0)
bogdanm 82:6473597d706e 49 #define FSL_FEATURE_SMC_HAS_LPWUI (1)
bogdanm 82:6473597d706e 50 #define FSL_FEATURE_SMC_HAS_LLS_SUBMODE (0)
bogdanm 82:6473597d706e 51 #define FSL_FEATURE_SMC_USE_VLLSCTRL_REG (1)
bogdanm 82:6473597d706e 52 #define FSL_FEATURE_SMC_USE_STOPCTRL_VLLSM (0)
bogdanm 82:6473597d706e 53 #elif (defined(CPU_MK64FN1M0VMD12))
bogdanm 82:6473597d706e 54 #define FSL_FEATURE_SMC_HAS_PSTOPO (0)
bogdanm 82:6473597d706e 55 #define FSL_FEATURE_SMC_HAS_LPOPO (0)
bogdanm 82:6473597d706e 56 #define FSL_FEATURE_SMC_HAS_PORPO (1)
bogdanm 82:6473597d706e 57 #define FSL_FEATURE_SMC_HAS_LPWUI (1)
bogdanm 82:6473597d706e 58 #define FSL_FEATURE_SMC_HAS_LLS_SUBMODE (0)
bogdanm 82:6473597d706e 59 #define FSL_FEATURE_SMC_USE_VLLSCTRL_REG (1)
bogdanm 82:6473597d706e 60 #define FSL_FEATURE_SMC_USE_STOPCTRL_VLLSM (0)
bogdanm 82:6473597d706e 61 #elif (defined(CPU_MK22FN512VDC12))
bogdanm 82:6473597d706e 62 #define FSL_FEATURE_SMC_HAS_PSTOPO (1)
bogdanm 82:6473597d706e 63 #define FSL_FEATURE_SMC_HAS_LPOPO (0)
bogdanm 82:6473597d706e 64 #define FSL_FEATURE_SMC_HAS_PORPO (1)
bogdanm 82:6473597d706e 65 #define FSL_FEATURE_SMC_HAS_LPWUI (0)
bogdanm 82:6473597d706e 66 #define FSL_FEATURE_SMC_HAS_LLS_SUBMODE (1)
bogdanm 82:6473597d706e 67 #define FSL_FEATURE_SMC_USE_VLLSCTRL_REG (0)
bogdanm 82:6473597d706e 68 #define FSL_FEATURE_SMC_USE_STOPCTRL_VLLSM (0)
bogdanm 82:6473597d706e 69 #else
bogdanm 82:6473597d706e 70 #error "No valid CPU defined"
bogdanm 82:6473597d706e 71 #endif
bogdanm 82:6473597d706e 72
bogdanm 82:6473597d706e 73 #endif /* __FSL_SMC_FEATURES_H__*/
bogdanm 82:6473597d706e 74 /*******************************************************************************
bogdanm 82:6473597d706e 75 * EOF
bogdanm 82:6473597d706e 76 ******************************************************************************/
bogdanm 82:6473597d706e 77