]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_STM32L152_IAR/system_and_ST_code/stm32l1xx_conf.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / CORTEX_STM32L152_IAR / system_and_ST_code / stm32l1xx_conf.h
1 /**\r
2   ******************************************************************************\r
3   * @file    Project/STM32L1xx_StdPeriph_Template/stm32l1xx_conf.h\r
4   * @author  MCD Application Team\r
5   * @version V1.0.0RC1\r
6   * @date    07/02/2010\r
7   * @brief   Library configuration file.\r
8   ******************************************************************************\r
9   * @copy\r
10   *\r
11   * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS\r
12   * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE\r
13   * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY\r
14   * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING\r
15   * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE\r
16   * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.\r
17   *\r
18   * <h2><center>&copy; COPYRIGHT 2010 STMicroelectronics</center></h2>\r
19   */\r
20 \r
21 /* Define to prevent recursive inclusion -------------------------------------*/\r
22 #ifndef __STM32L1xx_CONF_H\r
23 #define __STM32L1xx_CONF_H\r
24 \r
25 /* Includes ------------------------------------------------------------------*/\r
26 /* Uncomment the line below to enable peripheral header file inclusion */\r
27 /* #include "stm32l1xx_adc.h" */\r
28 /* #include "stm32l1xx_crc.h" */\r
29 /* #include "stm32l1xx_comp.h" */\r
30 /* #include "stm32l1xx_dac.h" */\r
31 /* #include "stm32l1xx_dbgmcu.h" */\r
32 /* #include "stm32l1xx_dma.h" */\r
33 #include "stm32l1xx_exti.h"\r
34 /* #include "stm32l1xx_flash.h" */\r
35 #include "stm32l1xx_gpio.h"\r
36 #include "stm32l1xx_syscfg.h"\r
37 /* #include "stm32l1xx_i2c.h" */\r
38 /* #include "stm32l1xx_iwdg.h" */\r
39 /* #include "stm32l1xx_lcd.h" */\r
40 #include "stm32l1xx_pwr.h"\r
41 #include "stm32l1xx_rcc.h"\r
42 /* #include "stm32l1xx_rtc.h" */\r
43 #include "stm32l1xx_spi.h"\r
44 #include "stm32l1xx_tim.h"\r
45 #include "stm32l1xx_usart.h"\r
46 /* #include "stm32l1xx_wwdg.h" */\r
47 #include "misc.h"  /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */\r
48 \r
49 /* Exported types ------------------------------------------------------------*/\r
50 /* Exported constants --------------------------------------------------------*/\r
51 /* Uncomment the line below to expanse the "assert_param" macro in the\r
52    Standard Peripheral Library drivers code */\r
53 /* #define USE_FULL_ASSERT    1 */\r
54 \r
55 /* Exported macro ------------------------------------------------------------*/\r
56 #ifdef  USE_FULL_ASSERT\r
57 \r
58 /**\r
59   * @brief  The assert_param macro is used for function's parameters check.\r
60   * @param  expr: If expr is false, it calls assert_failed function which reports\r
61   *         the name of the source file and the source line number of the call\r
62   *         that failed. If expr is true, it returns no value.\r
63   * @retval None\r
64   */\r
65   #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))\r
66 /* Exported functions ------------------------------------------------------- */\r
67   void assert_failed(uint8_t* file, uint32_t line);\r
68 #else\r
69   #define assert_param(expr) ((void)0)\r
70 #endif /* USE_FULL_ASSERT */\r
71 \r
72 #endif /* __STM32L1xx_CONF_H */\r
73 \r
74 /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/\r