mbed library sources

Dependents:   bare

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Mon Jan 27 14:30:07 2014 +0000
Revision:
76:aeb1df146756
Child:
106:ced8cbb51063
Synchronized with git revision a31ec9c5f7bcb5c8a1b2eced103f6a1dfa921abd

Full URL: https://github.com/mbedmicro/mbed/commit/a31ec9c5f7bcb5c8a1b2eced103f6a1dfa921abd/

Add NUCLEO_L152RE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 76:aeb1df146756 1 /**
mbed_official 76:aeb1df146756 2 ******************************************************************************
mbed_official 76:aeb1df146756 3 * @file Project/STM32L1xx_StdPeriph_Templates/stm32l1xx_conf.h
mbed_official 76:aeb1df146756 4 * @author MCD Application Team
mbed_official 76:aeb1df146756 5 * @version V1.1.1
mbed_official 76:aeb1df146756 6 * @date 13-April-2012
mbed_official 76:aeb1df146756 7 * @brief Library configuration file.
mbed_official 76:aeb1df146756 8 ******************************************************************************
mbed_official 76:aeb1df146756 9 * @attention
mbed_official 76:aeb1df146756 10 *
mbed_official 76:aeb1df146756 11 * <h2><center>&copy; COPYRIGHT 2012 STMicroelectronics</center></h2>
mbed_official 76:aeb1df146756 12 *
mbed_official 76:aeb1df146756 13 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
mbed_official 76:aeb1df146756 14 * You may not use this file except in compliance with the License.
mbed_official 76:aeb1df146756 15 * You may obtain a copy of the License at:
mbed_official 76:aeb1df146756 16 *
mbed_official 76:aeb1df146756 17 * http://www.st.com/software_license_agreement_liberty_v2
mbed_official 76:aeb1df146756 18 *
mbed_official 76:aeb1df146756 19 * Unless required by applicable law or agreed to in writing, software
mbed_official 76:aeb1df146756 20 * distributed under the License is distributed on an "AS IS" BASIS,
mbed_official 76:aeb1df146756 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 76:aeb1df146756 22 * See the License for the specific language governing permissions and
mbed_official 76:aeb1df146756 23 * limitations under the License.
mbed_official 76:aeb1df146756 24 *
mbed_official 76:aeb1df146756 25 ******************************************************************************
mbed_official 76:aeb1df146756 26 */
mbed_official 76:aeb1df146756 27
mbed_official 76:aeb1df146756 28 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 76:aeb1df146756 29 #ifndef __STM32L1xx_CONF_H
mbed_official 76:aeb1df146756 30 #define __STM32L1xx_CONF_H
mbed_official 76:aeb1df146756 31
mbed_official 76:aeb1df146756 32 /* Includes ------------------------------------------------------------------*/
mbed_official 76:aeb1df146756 33 /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */
mbed_official 76:aeb1df146756 34 #include "stm32l1xx_adc.h"
mbed_official 76:aeb1df146756 35 //#include "stm32l1xx_aes.h"
mbed_official 76:aeb1df146756 36 //#include "stm32l1xx_comp.h"
mbed_official 76:aeb1df146756 37 //#include "stm32l1xx_crc.h"
mbed_official 76:aeb1df146756 38 #include "stm32l1xx_dac.h"
mbed_official 76:aeb1df146756 39 #include "stm32l1xx_dbgmcu.h"
mbed_official 76:aeb1df146756 40 //#include "stm32l1xx_dma.h"
mbed_official 76:aeb1df146756 41 #include "stm32l1xx_exti.h"
mbed_official 76:aeb1df146756 42 //#include "stm32l1xx_flash.h"
mbed_official 76:aeb1df146756 43 //#include "stm32l1xx_fsmc.h"
mbed_official 76:aeb1df146756 44 #include "stm32l1xx_gpio.h"
mbed_official 76:aeb1df146756 45 #include "stm32l1xx_i2c.h"
mbed_official 76:aeb1df146756 46 //#include "stm32l1xx_iwdg.h"
mbed_official 76:aeb1df146756 47 //#include "stm32l1xx_lcd.h"
mbed_official 76:aeb1df146756 48 //#include "stm32l1xx_opamp.h"
mbed_official 76:aeb1df146756 49 #include "stm32l1xx_pwr.h"
mbed_official 76:aeb1df146756 50 #include "stm32l1xx_rcc.h"
mbed_official 76:aeb1df146756 51 #include "stm32l1xx_rtc.h"
mbed_official 76:aeb1df146756 52 #include "stm32l1xx_sdio.h"
mbed_official 76:aeb1df146756 53 #include "stm32l1xx_spi.h"
mbed_official 76:aeb1df146756 54 #include "stm32l1xx_syscfg.h"
mbed_official 76:aeb1df146756 55 #include "stm32l1xx_tim.h"
mbed_official 76:aeb1df146756 56 #include "stm32l1xx_usart.h"
mbed_official 76:aeb1df146756 57 //#include "stm32l1xx_wwdg.h"
mbed_official 76:aeb1df146756 58 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
mbed_official 76:aeb1df146756 59
mbed_official 76:aeb1df146756 60 /* Exported types ------------------------------------------------------------*/
mbed_official 76:aeb1df146756 61 /* Exported constants --------------------------------------------------------*/
mbed_official 76:aeb1df146756 62 /* Uncomment the line below to expanse the "assert_param" macro in the
mbed_official 76:aeb1df146756 63 Standard Peripheral Library drivers code */
mbed_official 76:aeb1df146756 64 /* #define USE_FULL_ASSERT 1 */
mbed_official 76:aeb1df146756 65
mbed_official 76:aeb1df146756 66 /* Exported macro ------------------------------------------------------------*/
mbed_official 76:aeb1df146756 67 #ifdef USE_FULL_ASSERT
mbed_official 76:aeb1df146756 68
mbed_official 76:aeb1df146756 69 /**
mbed_official 76:aeb1df146756 70 * @brief The assert_param macro is used for function's parameters check.
mbed_official 76:aeb1df146756 71 * @param expr: If expr is false, it calls assert_failed function which reports
mbed_official 76:aeb1df146756 72 * the name of the source file and the source line number of the call
mbed_official 76:aeb1df146756 73 * that failed. If expr is true, it returns no value.
mbed_official 76:aeb1df146756 74 * @retval None
mbed_official 76:aeb1df146756 75 */
mbed_official 76:aeb1df146756 76 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
mbed_official 76:aeb1df146756 77 /* Exported functions ------------------------------------------------------- */
mbed_official 76:aeb1df146756 78 void assert_failed(uint8_t* file, uint32_t line);
mbed_official 76:aeb1df146756 79 #else
mbed_official 76:aeb1df146756 80 #define assert_param(expr) ((void)0)
mbed_official 76:aeb1df146756 81 #endif /* USE_FULL_ASSERT */
mbed_official 76:aeb1df146756 82
mbed_official 76:aeb1df146756 83 #endif /* __STM32L1xx_CONF_H */
mbed_official 76:aeb1df146756 84
mbed_official 76:aeb1df146756 85 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/