mbed library sources

Dependents:   frdm_kl05z_gpio_test

Fork of mbed-src by mbed official

Committer:
shaoziyang
Date:
Sat Sep 13 14:25:46 2014 +0000
Revision:
323:9e901b0a5aa1
Parent:
126:549ba18ddd81
test with CLOCK_SETUP = 0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 126:549ba18ddd81 1 /**
mbed_official 126:549ba18ddd81 2 ******************************************************************************
mbed_official 126:549ba18ddd81 3 * @file Project/STM32F10x_StdPeriph_Template/stm32f10x_conf.h
mbed_official 126:549ba18ddd81 4 * @author MCD Application Team
mbed_official 126:549ba18ddd81 5 * @version V3.6.1
mbed_official 126:549ba18ddd81 6 * @date 05-March-2012
mbed_official 126:549ba18ddd81 7 * @brief Library configuration file.
mbed_official 126:549ba18ddd81 8 *******************************************************************************
mbed_official 126:549ba18ddd81 9 * Copyright (c) 2014, STMicroelectronics
mbed_official 126:549ba18ddd81 10 * All rights reserved.
mbed_official 126:549ba18ddd81 11 *
mbed_official 126:549ba18ddd81 12 * Redistribution and use in source and binary forms, with or without
mbed_official 126:549ba18ddd81 13 * modification, are permitted provided that the following conditions are met:
mbed_official 126:549ba18ddd81 14 *
mbed_official 126:549ba18ddd81 15 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 126:549ba18ddd81 16 * this list of conditions and the following disclaimer.
mbed_official 126:549ba18ddd81 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 126:549ba18ddd81 18 * this list of conditions and the following disclaimer in the documentation
mbed_official 126:549ba18ddd81 19 * and/or other materials provided with the distribution.
mbed_official 126:549ba18ddd81 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 126:549ba18ddd81 21 * may be used to endorse or promote products derived from this software
mbed_official 126:549ba18ddd81 22 * without specific prior written permission.
mbed_official 126:549ba18ddd81 23 *
mbed_official 126:549ba18ddd81 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 126:549ba18ddd81 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 126:549ba18ddd81 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 126:549ba18ddd81 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 126:549ba18ddd81 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 126:549ba18ddd81 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 126:549ba18ddd81 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 126:549ba18ddd81 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 126:549ba18ddd81 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 126:549ba18ddd81 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 126:549ba18ddd81 34 *******************************************************************************
mbed_official 126:549ba18ddd81 35 */
mbed_official 126:549ba18ddd81 36
mbed_official 126:549ba18ddd81 37 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 126:549ba18ddd81 38 #ifndef __STM32F10x_CONF_H
mbed_official 126:549ba18ddd81 39 #define __STM32F10x_CONF_H
mbed_official 126:549ba18ddd81 40
mbed_official 126:549ba18ddd81 41 /* Includes ------------------------------------------------------------------*/
mbed_official 126:549ba18ddd81 42 /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */
mbed_official 126:549ba18ddd81 43 #include "stm32f10x_adc.h"
mbed_official 126:549ba18ddd81 44 #include "stm32f10x_bkp.h"
mbed_official 126:549ba18ddd81 45 #include "stm32f10x_can.h"
mbed_official 126:549ba18ddd81 46 #include "stm32f10x_cec.h"
mbed_official 126:549ba18ddd81 47 #include "stm32f10x_crc.h"
mbed_official 126:549ba18ddd81 48 #include "stm32f10x_dac.h"
mbed_official 126:549ba18ddd81 49 #include "stm32f10x_dbgmcu.h"
mbed_official 126:549ba18ddd81 50 #include "stm32f10x_dma.h"
mbed_official 126:549ba18ddd81 51 #include "stm32f10x_exti.h"
mbed_official 126:549ba18ddd81 52 #include "stm32f10x_flash.h"
mbed_official 126:549ba18ddd81 53 #include "stm32f10x_fsmc.h"
mbed_official 126:549ba18ddd81 54 #include "stm32f10x_gpio.h"
mbed_official 126:549ba18ddd81 55 #include "stm32f10x_i2c.h"
mbed_official 126:549ba18ddd81 56 #include "stm32f10x_iwdg.h"
mbed_official 126:549ba18ddd81 57 #include "stm32f10x_pwr.h"
mbed_official 126:549ba18ddd81 58 #include "stm32f10x_rcc.h"
mbed_official 126:549ba18ddd81 59 #include "stm32f10x_rtc.h"
mbed_official 126:549ba18ddd81 60 #include "stm32f10x_sdio.h"
mbed_official 126:549ba18ddd81 61 #include "stm32f10x_spi.h"
mbed_official 126:549ba18ddd81 62 #include "stm32f10x_tim.h"
mbed_official 126:549ba18ddd81 63 #include "stm32f10x_usart.h"
mbed_official 126:549ba18ddd81 64 #include "stm32f10x_wwdg.h"
mbed_official 126:549ba18ddd81 65 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
mbed_official 126:549ba18ddd81 66
mbed_official 126:549ba18ddd81 67 /* Exported types ------------------------------------------------------------*/
mbed_official 126:549ba18ddd81 68 /* Exported constants --------------------------------------------------------*/
mbed_official 126:549ba18ddd81 69 /* Uncomment the line below to expanse the "assert_param" macro in the
mbed_official 126:549ba18ddd81 70 Standard Peripheral Library drivers code */
mbed_official 126:549ba18ddd81 71 /* #define USE_FULL_ASSERT 1 */
mbed_official 126:549ba18ddd81 72
mbed_official 126:549ba18ddd81 73 /* Exported macro ------------------------------------------------------------*/
mbed_official 126:549ba18ddd81 74 #ifdef USE_FULL_ASSERT
mbed_official 126:549ba18ddd81 75
mbed_official 126:549ba18ddd81 76 /**
mbed_official 126:549ba18ddd81 77 * @brief The assert_param macro is used for function's parameters check.
mbed_official 126:549ba18ddd81 78 * @param expr: If expr is false, it calls assert_failed function which reports
mbed_official 126:549ba18ddd81 79 * the name of the source file and the source line number of the call
mbed_official 126:549ba18ddd81 80 * that failed. If expr is true, it returns no value.
mbed_official 126:549ba18ddd81 81 * @retval None
mbed_official 126:549ba18ddd81 82 */
mbed_official 126:549ba18ddd81 83 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
mbed_official 126:549ba18ddd81 84 /* Exported functions ------------------------------------------------------- */
mbed_official 126:549ba18ddd81 85 void assert_failed(uint8_t* file, uint32_t line);
mbed_official 126:549ba18ddd81 86 #else
mbed_official 126:549ba18ddd81 87 #define assert_param(expr) ((void)0)
mbed_official 126:549ba18ddd81 88 #endif /* USE_FULL_ASSERT */
mbed_official 126:549ba18ddd81 89
mbed_official 126:549ba18ddd81 90 #endif /* __STM32F10x_CONF_H */
mbed_official 126:549ba18ddd81 91
mbed_official 126:549ba18ddd81 92 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/