version_2.0

Dependents:   cc3000_ping_demo_try_2

Fork of mbed by mbed official

Committer:
erezi
Date:
Wed Jun 25 06:08:49 2014 +0000
Revision:
86:4f9a848d74c7
Parent:
81:7d30d6019079
version_2.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 77:869cf507173a 1 /**
emilmont 77:869cf507173a 2 ******************************************************************************
emilmont 77:869cf507173a 3 * @file Project/STM32F0xx_StdPeriph_Templates/stm32f0xx_conf.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 Library configuration file.
emilmont 77:869cf507173a 8 ******************************************************************************
emilmont 77:869cf507173a 9 * @attention
emilmont 77:869cf507173a 10 *
bogdanm 81:7d30d6019079 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
emilmont 77:869cf507173a 12 *
bogdanm 81:7d30d6019079 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 81:7d30d6019079 14 * are permitted provided that the following conditions are met:
bogdanm 81:7d30d6019079 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 81:7d30d6019079 16 * this list of conditions and the following disclaimer.
bogdanm 81:7d30d6019079 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 81:7d30d6019079 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 81:7d30d6019079 19 * and/or other materials provided with the distribution.
bogdanm 81:7d30d6019079 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 81:7d30d6019079 21 * may be used to endorse or promote products derived from this software
bogdanm 81:7d30d6019079 22 * without specific prior written permission.
emilmont 77:869cf507173a 23 *
bogdanm 81:7d30d6019079 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 81:7d30d6019079 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 81:7d30d6019079 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 81:7d30d6019079 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 81:7d30d6019079 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 81:7d30d6019079 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 81:7d30d6019079 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 81:7d30d6019079 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 81:7d30d6019079 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 81:7d30d6019079 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
emilmont 77:869cf507173a 34 *
emilmont 77:869cf507173a 35 ******************************************************************************
emilmont 77:869cf507173a 36 */
emilmont 77:869cf507173a 37
emilmont 77:869cf507173a 38 /* Define to prevent recursive inclusion -------------------------------------*/
emilmont 77:869cf507173a 39 #ifndef __STM32F0XX_CONF_H
emilmont 77:869cf507173a 40 #define __STM32F0XX_CONF_H
emilmont 77:869cf507173a 41
emilmont 77:869cf507173a 42 /* Includes ------------------------------------------------------------------*/
emilmont 77:869cf507173a 43 /* Comment the line below to disable peripheral header file inclusion */
emilmont 77:869cf507173a 44 #include "stm32f0xx_adc.h"
emilmont 77:869cf507173a 45 #include "stm32f0xx_can.h"
emilmont 77:869cf507173a 46 #include "stm32f0xx_cec.h"
emilmont 77:869cf507173a 47 #include "stm32f0xx_crc.h"
emilmont 77:869cf507173a 48 #include "stm32f0xx_crs.h"
emilmont 77:869cf507173a 49 #include "stm32f0xx_comp.h"
emilmont 77:869cf507173a 50 #include "stm32f0xx_dac.h"
emilmont 77:869cf507173a 51 #include "stm32f0xx_dbgmcu.h"
emilmont 77:869cf507173a 52 #include "stm32f0xx_dma.h"
emilmont 77:869cf507173a 53 #include "stm32f0xx_exti.h"
emilmont 77:869cf507173a 54 #include "stm32f0xx_flash.h"
emilmont 77:869cf507173a 55 #include "stm32f0xx_gpio.h"
emilmont 77:869cf507173a 56 #include "stm32f0xx_syscfg.h"
emilmont 77:869cf507173a 57 #include "stm32f0xx_i2c.h"
emilmont 77:869cf507173a 58 #include "stm32f0xx_iwdg.h"
emilmont 77:869cf507173a 59 #include "stm32f0xx_pwr.h"
emilmont 77:869cf507173a 60 #include "stm32f0xx_rcc.h"
emilmont 77:869cf507173a 61 #include "stm32f0xx_rtc.h"
emilmont 77:869cf507173a 62 #include "stm32f0xx_spi.h"
emilmont 77:869cf507173a 63 #include "stm32f0xx_tim.h"
emilmont 77:869cf507173a 64 #include "stm32f0xx_usart.h"
emilmont 77:869cf507173a 65 #include "stm32f0xx_wwdg.h"
emilmont 77:869cf507173a 66 #include "stm32f0xx_misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
emilmont 77:869cf507173a 67
emilmont 77:869cf507173a 68 /* Exported types ------------------------------------------------------------*/
emilmont 77:869cf507173a 69 /* Exported constants --------------------------------------------------------*/
emilmont 77:869cf507173a 70 /* Uncomment the line below to expanse the "assert_param" macro in the
emilmont 77:869cf507173a 71 Standard Peripheral Library drivers code */
emilmont 77:869cf507173a 72 /* #define USE_FULL_ASSERT 1 */
emilmont 77:869cf507173a 73
emilmont 77:869cf507173a 74 /* Exported macro ------------------------------------------------------------*/
emilmont 77:869cf507173a 75 #ifdef USE_FULL_ASSERT
emilmont 77:869cf507173a 76
emilmont 77:869cf507173a 77 /**
emilmont 77:869cf507173a 78 * @brief The assert_param macro is used for function's parameters check.
emilmont 77:869cf507173a 79 * @param expr: If expr is false, it calls assert_failed function which reports
emilmont 77:869cf507173a 80 * the name of the source file and the source line number of the call
emilmont 77:869cf507173a 81 * that failed. If expr is true, it returns no value.
emilmont 77:869cf507173a 82 * @retval None
emilmont 77:869cf507173a 83 */
emilmont 77:869cf507173a 84 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
emilmont 77:869cf507173a 85 /* Exported functions ------------------------------------------------------- */
emilmont 77:869cf507173a 86 void assert_failed(uint8_t* file, uint32_t line);
emilmont 77:869cf507173a 87 #else
emilmont 77:869cf507173a 88 #define assert_param(expr) ((void)0)
emilmont 77:869cf507173a 89 #endif /* USE_FULL_ASSERT */
emilmont 77:869cf507173a 90
emilmont 77:869cf507173a 91 #endif /* __STM32F0XX_CONF_H */
emilmont 77:869cf507173a 92
emilmont 77:869cf507173a 93 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/