dRonin  adbada4
dRonin firmware
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
stm32f10x_conf.h
Go to the documentation of this file.
1 
21 /* Define to prevent recursive inclusion -------------------------------------*/
22 #ifndef __STM32F10x_CONF_H
23 #define __STM32F10x_CONF_H
24 
25 /* Includes ------------------------------------------------------------------*/
26 /* Uncomment the line below to enable peripheral header file inclusion */
27 #include "stm32f10x_adc.h"
28 #include "stm32f10x_bkp.h"
29 /* #include "stm32f10x_can.h" */
30 #include "stm32f10x_crc.h"
31 #include "stm32f10x_dac.h"
32 /* #include "stm32f10x_dbgmcu.h" */
33 #include "stm32f10x_dma.h"
34 #include "stm32f10x_exti.h"
35 #include "stm32f10x_flash.h"
36 /* #include "stm32f10x_fsmc.h" */
37 #include "stm32f10x_gpio.h"
38 #include "stm32f10x_i2c.h"
39 /* #include "stm32f10x_iwdg.h" */
40 #include "stm32f10x_pwr.h"
41 #include "stm32f10x_rcc.h"
42 #include "stm32f10x_rtc.h"
43 /* #include "stm32f10x_sdio.h" */
44 #include "stm32f10x_spi.h"
45 #include "stm32f10x_tim.h"
46 #include "stm32f10x_usart.h"
47 #include "stm32f10x_wwdg.h"
48 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
49 
50 /* Exported types ------------------------------------------------------------*/
51 /* Exported constants --------------------------------------------------------*/
52 /* Uncomment the line below to expanse the "assert_param" macro in the
53  Standard Peripheral Library drivers code */
54 //#define USE_FULL_ASSERT 1
55 
56 /* Exported macro ------------------------------------------------------------*/
57 #ifdef USE_FULL_ASSERT
58 
67 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
68 /* Exported functions ------------------------------------------------------- */
69 extern void assert_failed(uint8_t * file, uint32_t line);
70 #else
71 #define assert_param(expr) ((void)0)
72 #endif /* USE_FULL_ASSERT */
73 
74 #endif /* __STM32F10x_CONF_H */
75 
76 /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/