The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
emilmont
Date:
Fri Feb 14 14:36:43 2014 +0000
Revision:
77:869cf507173a
Child:
81:7d30d6019079
Release 77 of the mbed library

Main changes:
* Add target NUCLEO_F030R8
* Add target NUCLEO_F401RE
* Add target NUCLEO_F103RB
* Add target NUCLEO_L152RE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 77:869cf507173a 1 /**
emilmont 77:869cf507173a 2 ******************************************************************************
emilmont 77:869cf507173a 3 * @file system_stm32f0xx.h
emilmont 77:869cf507173a 4 * @author MCD Application Team
emilmont 77:869cf507173a 5 * @version V1.3.1
emilmont 77:869cf507173a 6 * @date 17-January-2014
emilmont 77:869cf507173a 7 * @brief CMSIS Cortex-M0 Device Peripheral Access Layer System Header File.
emilmont 77:869cf507173a 8 ******************************************************************************
emilmont 77:869cf507173a 9 * @attention
emilmont 77:869cf507173a 10 *
emilmont 77:869cf507173a 11 * <h2><center>&copy; COPYRIGHT 2014 STMicroelectronics</center></h2>
emilmont 77:869cf507173a 12 *
emilmont 77:869cf507173a 13 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
emilmont 77:869cf507173a 14 * You may not use this file except in compliance with the License.
emilmont 77:869cf507173a 15 * You may obtain a copy of the License at:
emilmont 77:869cf507173a 16 *
emilmont 77:869cf507173a 17 * http://www.st.com/software_license_agreement_liberty_v2
emilmont 77:869cf507173a 18 *
emilmont 77:869cf507173a 19 * Unless required by applicable law or agreed to in writing, software
emilmont 77:869cf507173a 20 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 77:869cf507173a 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 77:869cf507173a 22 * See the License for the specific language governing permissions and
emilmont 77:869cf507173a 23 * limitations under the License.
emilmont 77:869cf507173a 24 *
emilmont 77:869cf507173a 25 ******************************************************************************
emilmont 77:869cf507173a 26 */
emilmont 77:869cf507173a 27
emilmont 77:869cf507173a 28 /** @addtogroup CMSIS
emilmont 77:869cf507173a 29 * @{
emilmont 77:869cf507173a 30 */
emilmont 77:869cf507173a 31
emilmont 77:869cf507173a 32 /** @addtogroup stm32f0xx_system
emilmont 77:869cf507173a 33 * @{
emilmont 77:869cf507173a 34 */
emilmont 77:869cf507173a 35
emilmont 77:869cf507173a 36 /**
emilmont 77:869cf507173a 37 * @brief Define to prevent recursive inclusion
emilmont 77:869cf507173a 38 */
emilmont 77:869cf507173a 39 #ifndef __SYSTEM_STM32F0XX_H
emilmont 77:869cf507173a 40 #define __SYSTEM_STM32F0XX_H
emilmont 77:869cf507173a 41
emilmont 77:869cf507173a 42 #ifdef __cplusplus
emilmont 77:869cf507173a 43 extern "C" {
emilmont 77:869cf507173a 44 #endif
emilmont 77:869cf507173a 45
emilmont 77:869cf507173a 46 /** @addtogroup STM32F0xx_System_Includes
emilmont 77:869cf507173a 47 * @{
emilmont 77:869cf507173a 48 */
emilmont 77:869cf507173a 49
emilmont 77:869cf507173a 50 /**
emilmont 77:869cf507173a 51 * @}
emilmont 77:869cf507173a 52 */
emilmont 77:869cf507173a 53
emilmont 77:869cf507173a 54
emilmont 77:869cf507173a 55 /** @addtogroup STM32F0xx_System_Exported_types
emilmont 77:869cf507173a 56 * @{
emilmont 77:869cf507173a 57 */
emilmont 77:869cf507173a 58
emilmont 77:869cf507173a 59 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
emilmont 77:869cf507173a 60
emilmont 77:869cf507173a 61 /**
emilmont 77:869cf507173a 62 * @}
emilmont 77:869cf507173a 63 */
emilmont 77:869cf507173a 64
emilmont 77:869cf507173a 65 /** @addtogroup STM32F0xx_System_Exported_Constants
emilmont 77:869cf507173a 66 * @{
emilmont 77:869cf507173a 67 */
emilmont 77:869cf507173a 68
emilmont 77:869cf507173a 69 /**
emilmont 77:869cf507173a 70 * @}
emilmont 77:869cf507173a 71 */
emilmont 77:869cf507173a 72
emilmont 77:869cf507173a 73 /** @addtogroup STM32F0xx_System_Exported_Macros
emilmont 77:869cf507173a 74 * @{
emilmont 77:869cf507173a 75 */
emilmont 77:869cf507173a 76
emilmont 77:869cf507173a 77 /**
emilmont 77:869cf507173a 78 * @}
emilmont 77:869cf507173a 79 */
emilmont 77:869cf507173a 80
emilmont 77:869cf507173a 81 /** @addtogroup STM32F0xx_System_Exported_Functions
emilmont 77:869cf507173a 82 * @{
emilmont 77:869cf507173a 83 */
emilmont 77:869cf507173a 84
emilmont 77:869cf507173a 85 extern void SystemInit(void);
emilmont 77:869cf507173a 86 extern void SystemCoreClockUpdate(void);
emilmont 77:869cf507173a 87 /**
emilmont 77:869cf507173a 88 * @}
emilmont 77:869cf507173a 89 */
emilmont 77:869cf507173a 90
emilmont 77:869cf507173a 91 #ifdef __cplusplus
emilmont 77:869cf507173a 92 }
emilmont 77:869cf507173a 93 #endif
emilmont 77:869cf507173a 94
emilmont 77:869cf507173a 95 #endif /*__SYSTEM_STM32F0XX_H */
emilmont 77:869cf507173a 96
emilmont 77:869cf507173a 97 /**
emilmont 77:869cf507173a 98 * @}
emilmont 77:869cf507173a 99 */
emilmont 77:869cf507173a 100
emilmont 77:869cf507173a 101 /**
emilmont 77:869cf507173a 102 * @}
emilmont 77:869cf507173a 103 */
emilmont 77:869cf507173a 104 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/