Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
102:da0ca467f8b5
.

Who changed what in which revision?

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