anyThing Connected Team / mbed-dev

Dependents:   BREAK_SENSOR_LED

Fork of mbed-dev by mbed official

Committer:
<>
Date:
Fri Sep 02 15:07:44 2016 +0100
Revision:
144:ef7eb2e8f9f7
Parent:
119:3921aeca8633
This updates the lib to the mbed lib v125

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 119:3921aeca8633 1 /**************************************************************************//**
mbed_official 119:3921aeca8633 2 * @file system_VKRZA1H.h
mbed_official 119:3921aeca8633 3 * @brief CMSIS Device System Header File for
mbed_official 119:3921aeca8633 4 * ARMCA9 Device Series
mbed_official 119:3921aeca8633 5 * @version V1.00
mbed_official 119:3921aeca8633 6 * @date 11 June 2013
mbed_official 119:3921aeca8633 7 *
mbed_official 119:3921aeca8633 8 * @note
mbed_official 119:3921aeca8633 9 *
mbed_official 119:3921aeca8633 10 ******************************************************************************/
mbed_official 119:3921aeca8633 11 /* Copyright (c) 2011 - 2013 ARM LIMITED
mbed_official 119:3921aeca8633 12
mbed_official 119:3921aeca8633 13 All rights reserved.
mbed_official 119:3921aeca8633 14 Redistribution and use in source and binary forms, with or without
mbed_official 119:3921aeca8633 15 modification, are permitted provided that the following conditions are met:
mbed_official 119:3921aeca8633 16 - Redistributions of source code must retain the above copyright
mbed_official 119:3921aeca8633 17 notice, this list of conditions and the following disclaimer.
mbed_official 119:3921aeca8633 18 - Redistributions in binary form must reproduce the above copyright
mbed_official 119:3921aeca8633 19 notice, this list of conditions and the following disclaimer in the
mbed_official 119:3921aeca8633 20 documentation and/or other materials provided with the distribution.
mbed_official 119:3921aeca8633 21 - Neither the name of ARM nor the names of its contributors may be used
mbed_official 119:3921aeca8633 22 to endorse or promote products derived from this software without
mbed_official 119:3921aeca8633 23 specific prior written permission.
mbed_official 119:3921aeca8633 24 *
mbed_official 119:3921aeca8633 25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 119:3921aeca8633 26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 119:3921aeca8633 27 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
mbed_official 119:3921aeca8633 28 ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
mbed_official 119:3921aeca8633 29 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
mbed_official 119:3921aeca8633 30 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
mbed_official 119:3921aeca8633 31 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
mbed_official 119:3921aeca8633 32 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
mbed_official 119:3921aeca8633 33 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
mbed_official 119:3921aeca8633 34 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
mbed_official 119:3921aeca8633 35 POSSIBILITY OF SUCH DAMAGE.
mbed_official 119:3921aeca8633 36 ---------------------------------------------------------------------------*/
mbed_official 119:3921aeca8633 37
mbed_official 119:3921aeca8633 38
mbed_official 119:3921aeca8633 39 #ifndef __SYSTEM_VKRZA1H
mbed_official 119:3921aeca8633 40 #define __SYSTEM_VKRZA1H
mbed_official 119:3921aeca8633 41
mbed_official 119:3921aeca8633 42 #ifdef __cplusplus
mbed_official 119:3921aeca8633 43 extern "C" {
mbed_official 119:3921aeca8633 44 #endif
mbed_official 119:3921aeca8633 45
<> 144:ef7eb2e8f9f7 46 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
<> 144:ef7eb2e8f9f7 47
mbed_official 119:3921aeca8633 48 typedef void(*IRQHandler)();
mbed_official 119:3921aeca8633 49 uint32_t InterruptHandlerRegister(IRQn_Type, IRQHandler);
mbed_official 119:3921aeca8633 50 uint32_t InterruptHandlerUnregister(IRQn_Type);
mbed_official 119:3921aeca8633 51
mbed_official 119:3921aeca8633 52 /**
mbed_official 119:3921aeca8633 53 * Initialize the system
mbed_official 119:3921aeca8633 54 *
mbed_official 119:3921aeca8633 55 * @param none
mbed_official 119:3921aeca8633 56 * @return none
mbed_official 119:3921aeca8633 57 *
mbed_official 119:3921aeca8633 58 * @brief Setup the microcontroller system.
mbed_official 119:3921aeca8633 59 * Initialize the System and update the Systd short int16_t;emCoreClock variable.
mbed_official 119:3921aeca8633 60 */
mbed_official 119:3921aeca8633 61 extern void SystemInit (void);
mbed_official 119:3921aeca8633 62
mbed_official 119:3921aeca8633 63 #ifdef __cplusplus
mbed_official 119:3921aeca8633 64 }
mbed_official 119:3921aeca8633 65 #endif
mbed_official 119:3921aeca8633 66
mbed_official 119:3921aeca8633 67 #endif /* __SYSTEM_VKRZA1H */