dRonin  adbada4
dRonin firmware
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
stm32f0xx_conf.h
Go to the documentation of this file.
1 
28 /* Define to prevent recursive inclusion -------------------------------------*/
29 #ifndef __STM32F0XX_CONF_H
30 #define __STM32F0XX_CONF_H
31 
32 /* Includes ------------------------------------------------------------------*/
33 /* Comment the line below to disable peripheral header file inclusion */
34 /* #include "stm32f0xx_adc.h" */
35 #include "stm32f0xx_cec.h"
36 #include "stm32f0xx_crc.h"
37 #include "stm32f0xx_comp.h"
38 #include "stm32f0xx_dac.h"
39 #include "stm32f0xx_dbgmcu.h"
40 #include "stm32f0xx_dma.h"
41 #include "stm32f0xx_exti.h"
42 #include "stm32f0xx_flash.h"
43 #include "stm32f0xx_gpio.h"
44 #include "stm32f0xx_syscfg.h"
45 #include "stm32f0xx_i2c.h"
46 #include "stm32f0xx_iwdg.h"
47 #include "stm32f0xx_pwr.h"
48 #include "stm32f0xx_rcc.h"
49 #include "stm32f0xx_rtc.h"
50 #include "stm32f0xx_spi.h"
51 #include "stm32f0xx_tim.h"
52 #include "stm32f0xx_usart.h"
53 #include "stm32f0xx_wwdg.h"
54 #include "stm32f0xx_misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
55 
56 /* Exported types ------------------------------------------------------------*/
57 /* Exported constants --------------------------------------------------------*/
58 /* Uncomment the line below to expanse the "assert_param" macro in the
59  Standard Peripheral Library drivers code */
60 /* #define USE_FULL_ASSERT 1 */
61 /* Exported macro ------------------------------------------------------------*/
62 #ifdef USE_FULL_ASSERT
63 
71  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
72 /* Exported functions ------------------------------------------------------- */
73  void assert_failed(uint8_t* file, uint32_t line);
74 #else
75  #define assert_param(expr) ((void)0)
76 #endif /* USE_FULL_ASSERT */
77 
78 #endif /* __STM32F0XX_CONF_H */
79 
80 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/