]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/stm32f10x_conf.h
Update version number in readiness for V10.3.0 release. Sync SVN with reviewed releas...
[freertos] / FreeRTOS / Demo / CORTEX_STM32F100_Atollic / Simple_Demo_Source / stm32f10x_conf.h
1 /**\r
2   ******************************************************************************\r
3   * @file    Project/STM32F10x_StdPeriph_Template/stm32f10x_conf.h \r
4   * @author  MCD Application Team\r
5   * @version V3.4.0\r
6   * @date    10/15/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 __STM32F10x_CONF_H\r
23 #define __STM32F10x_CONF_H\r
24 \r
25 /* Includes ------------------------------------------------------------------*/\r
26 /* Uncomment the line below to enable peripheral header file inclusion */\r
27 #include "stm32f10x_exti.h"\r
28 #include "stm32f10x_gpio.h"\r
29 #include "stm32f10x_rcc.h"\r
30 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */\r
31 \r
32 /* Exported types ------------------------------------------------------------*/\r
33 /* Exported constants --------------------------------------------------------*/\r
34 /* Uncomment the line below to expanse the "assert_param" macro in the \r
35    Standard Peripheral Library drivers code */\r
36 /* #define USE_FULL_ASSERT    1 */\r
37 \r
38 /* Exported macro ------------------------------------------------------------*/\r
39 #ifdef  USE_FULL_ASSERT\r
40 \r
41 /**\r
42   * @brief  The assert_param macro is used for function's parameters check.\r
43   * @param  expr: If expr is false, it calls assert_failed function\r
44   *   which reports the name of the source file and the source\r
45   *   line number of the call that failed. \r
46   *   If expr is true, it returns no value.\r
47   * @retval None\r
48   */\r
49   #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))\r
50 /* Exported functions ------------------------------------------------------- */\r
51   void assert_failed(uint8_t* file, uint32_t line);\r
52 #else\r
53   #define assert_param(expr) ((void)0)\r
54 #endif /* USE_FULL_ASSERT */\r
55 \r
56 #endif /* __STM32F10x_CONF_H */\r
57 \r
58 /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/\r