Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
targets/TARGET_ONSEMI/TARGET_NCS36510/device/system_NCS36510.h@165:2dd56e6daeec, 2017-05-23 (annotated)
- Committer:
- ranaumarnaeem
- Date:
- Tue May 23 12:54:50 2017 +0000
- Revision:
- 165:2dd56e6daeec
- Parent:
- 149:156823d33999
jhjg
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 149:156823d33999 | 1 | /**************************************************************************//** |
<> | 149:156823d33999 | 2 | * @file system_NCS36510.h |
<> | 149:156823d33999 | 3 | * @brief CMSIS Cortex-M3 Device System Header File |
<> | 149:156823d33999 | 4 | * for CM3 Device Series |
<> | 149:156823d33999 | 5 | * @version V1.05 |
<> | 149:156823d33999 | 6 | * @date 19. July 2011 |
<> | 149:156823d33999 | 7 | * |
<> | 149:156823d33999 | 8 | * @note |
<> | 149:156823d33999 | 9 | * Copyright (C) 2010-2011 ARM Limited. All rights reserved. |
<> | 149:156823d33999 | 10 | * |
<> | 149:156823d33999 | 11 | * @par |
<> | 149:156823d33999 | 12 | * ARM Limited (ARM) is supplying this software for use with Cortex-M |
<> | 149:156823d33999 | 13 | * processor based microcontrollers. This file can be freely distributed |
<> | 149:156823d33999 | 14 | * within development tools that are supporting such ARM based processors. |
<> | 149:156823d33999 | 15 | * |
<> | 149:156823d33999 | 16 | * @par |
<> | 149:156823d33999 | 17 | * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED |
<> | 149:156823d33999 | 18 | * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF |
<> | 149:156823d33999 | 19 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. |
<> | 149:156823d33999 | 20 | * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR |
<> | 149:156823d33999 | 21 | * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
<> | 149:156823d33999 | 22 | * |
<> | 149:156823d33999 | 23 | ******************************************************************************/ |
<> | 149:156823d33999 | 24 | |
<> | 149:156823d33999 | 25 | |
<> | 149:156823d33999 | 26 | #ifndef SYSTEM_ARMCM3_H |
<> | 149:156823d33999 | 27 | #define SYSTEM_ARMCM3_H |
<> | 149:156823d33999 | 28 | |
<> | 149:156823d33999 | 29 | #ifdef __cplusplus |
<> | 149:156823d33999 | 30 | extern "C" { |
<> | 149:156823d33999 | 31 | #endif |
<> | 149:156823d33999 | 32 | |
<> | 149:156823d33999 | 33 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ |
<> | 149:156823d33999 | 34 | |
<> | 149:156823d33999 | 35 | |
<> | 149:156823d33999 | 36 | /** |
<> | 149:156823d33999 | 37 | * Initialize the system |
<> | 149:156823d33999 | 38 | * |
<> | 149:156823d33999 | 39 | * @param none |
<> | 149:156823d33999 | 40 | * @return none |
<> | 149:156823d33999 | 41 | * |
<> | 149:156823d33999 | 42 | * @brief Setup the microcontroller system. |
<> | 149:156823d33999 | 43 | * Initialize the System and update the SystemCoreClock variable. |
<> | 149:156823d33999 | 44 | */ |
<> | 149:156823d33999 | 45 | extern void SystemInit (void); |
<> | 149:156823d33999 | 46 | |
<> | 149:156823d33999 | 47 | /** |
<> | 149:156823d33999 | 48 | * Update SystemCoreClock variable |
<> | 149:156823d33999 | 49 | * |
<> | 149:156823d33999 | 50 | * @param none |
<> | 149:156823d33999 | 51 | * @return none |
<> | 149:156823d33999 | 52 | * |
<> | 149:156823d33999 | 53 | * @brief Updates the SystemCoreClock with current core Clock |
<> | 149:156823d33999 | 54 | * retrieved from cpu registers. |
<> | 149:156823d33999 | 55 | */ |
<> | 149:156823d33999 | 56 | extern void SystemCoreClockUpdate (void); |
<> | 149:156823d33999 | 57 | |
<> | 149:156823d33999 | 58 | #ifdef __cplusplus |
<> | 149:156823d33999 | 59 | } |
<> | 149:156823d33999 | 60 | #endif |
<> | 149:156823d33999 | 61 | |
<> | 149:156823d33999 | 62 | #endif /* SYSTEM_ARMCM3_H */ |