mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
yusuke_kyo
Date:
Wed Apr 08 08:04:18 2015 +0000
Revision:
98:01a414ca7d6d
Parent:
81:7d30d6019079
remove SerialHalfDuplex.h

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 81:7d30d6019079 1 /**************************************************************************//**
bogdanm 81:7d30d6019079 2 * @file system_LPC11Uxx.h
bogdanm 81:7d30d6019079 3 * @brief CMSIS Cortex-M0 Device Peripheral Access Layer Header File
bogdanm 81:7d30d6019079 4 * for the NXP LPC11Uxx Device Series
bogdanm 81:7d30d6019079 5 * @version V1.10
bogdanm 81:7d30d6019079 6 * @date 24. November 2010
bogdanm 81:7d30d6019079 7 *
bogdanm 81:7d30d6019079 8 * @note
bogdanm 81:7d30d6019079 9 * Copyright (C) 2009-2010 ARM Limited. All rights reserved.
bogdanm 81:7d30d6019079 10 *
bogdanm 81:7d30d6019079 11 * @par
bogdanm 81:7d30d6019079 12 * ARM Limited (ARM) is supplying this software for use with Cortex-M
bogdanm 81:7d30d6019079 13 * processor based microcontrollers. This file can be freely distributed
bogdanm 81:7d30d6019079 14 * within development tools that are supporting such ARM based processors.
bogdanm 81:7d30d6019079 15 *
bogdanm 81:7d30d6019079 16 * @par
bogdanm 81:7d30d6019079 17 * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
bogdanm 81:7d30d6019079 18 * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
bogdanm 81:7d30d6019079 19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
bogdanm 81:7d30d6019079 20 * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
bogdanm 81:7d30d6019079 21 * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
bogdanm 81:7d30d6019079 22 *
bogdanm 81:7d30d6019079 23 ******************************************************************************/
bogdanm 81:7d30d6019079 24
bogdanm 81:7d30d6019079 25
bogdanm 81:7d30d6019079 26 #ifndef __SYSTEM_LPC11Uxx_H
bogdanm 81:7d30d6019079 27 #define __SYSTEM_LPC11Uxx_H
bogdanm 81:7d30d6019079 28
bogdanm 81:7d30d6019079 29 #ifdef __cplusplus
bogdanm 81:7d30d6019079 30 extern "C" {
bogdanm 81:7d30d6019079 31 #endif
bogdanm 81:7d30d6019079 32
bogdanm 81:7d30d6019079 33 #include <stdint.h>
bogdanm 81:7d30d6019079 34
bogdanm 81:7d30d6019079 35 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
bogdanm 81:7d30d6019079 36
bogdanm 81:7d30d6019079 37
bogdanm 81:7d30d6019079 38 /**
bogdanm 81:7d30d6019079 39 * Initialize the system
bogdanm 81:7d30d6019079 40 *
bogdanm 81:7d30d6019079 41 * @param none
bogdanm 81:7d30d6019079 42 * @return none
bogdanm 81:7d30d6019079 43 *
bogdanm 81:7d30d6019079 44 * @brief Setup the microcontroller system.
bogdanm 81:7d30d6019079 45 * Initialize the System and update the SystemCoreClock variable.
bogdanm 81:7d30d6019079 46 */
bogdanm 81:7d30d6019079 47 extern void SystemInit (void);
bogdanm 81:7d30d6019079 48
bogdanm 81:7d30d6019079 49 /**
bogdanm 81:7d30d6019079 50 * Update SystemCoreClock variable
bogdanm 81:7d30d6019079 51 *
bogdanm 81:7d30d6019079 52 * @param none
bogdanm 81:7d30d6019079 53 * @return none
bogdanm 81:7d30d6019079 54 *
bogdanm 81:7d30d6019079 55 * @brief Updates the SystemCoreClock with current core Clock
bogdanm 81:7d30d6019079 56 * retrieved from cpu registers.
bogdanm 81:7d30d6019079 57 */
bogdanm 81:7d30d6019079 58 extern void SystemCoreClockUpdate (void);
bogdanm 81:7d30d6019079 59
bogdanm 81:7d30d6019079 60 #ifdef __cplusplus
bogdanm 81:7d30d6019079 61 }
bogdanm 81:7d30d6019079 62 #endif
bogdanm 81:7d30d6019079 63
bogdanm 81:7d30d6019079 64 #endif /* __SYSTEM_LPC11Uxx_H */