APM:Libraries
stm32f4xx_conf.h
Go to the documentation of this file.
1 
24 /* Define to prevent recursive inclusion -------------------------------------*/
25 #ifndef __STM32F4xx_CONF_H
26 #define __STM32F4xx_CONF_H
27 
28 
29 /* Uncomment the line below to expanse the "assert_param" macro in the
30  Standard Peripheral Library drivers code */
31 /* #define USE_FULL_ASSERT 1 */
32 
33 /* Exported macro ------------------------------------------------------------*/
34 #ifdef USE_FULL_ASSERT
35 
44  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
45 /* Exported functions ------------------------------------------------------- */
46  void assert(uint8_t* file, uint32_t line);
47 #else
48  #define assert_param(expr) ((void)0)
49 #endif /* USE_FULL_ASSERT */
50 
51 /* Includes ------------------------------------------------------------------*/
52 
53 #include "stm32f4xx_adc.h"
54 #include "stm32f4xx_dbgmcu.h"
55 #include "stm32f4xx_exti.h"
56 #include "stm32f4xx_flash.h"
57 #include "stm32f4xx_gpio.h"
58 #include "stm32f4xx_pwr.h"
59 #include "stm32f4xx_rcc.h"
60 #include "stm32f4xx_rtc.h"
61 #include "stm32f4xx_spi.h"
62 #include "stm32f4xx_syscfg.h"
63 #include "stm32f4xx_tim.h"
64 #include "stm32f4xx_usart.h"
65 #include "stm32f4xx_nvic.h" // High level functions for NVIC and SysTick (add-on to CMSIS functions)
66 
67 //#include "stm32f4xx_dma.h"
68 //#include "stm32f4xx_i2c.h"
69 //#include "stm32f4xx_iwdg.h"
70 //#include "stm32f4xx_wwdg.h"
71 //#include "stm32f4xx_can.h"
72 
73 
74 #endif /* __STM32F4xx_CONF_H */
75 
76 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/