stm32f4xx_conf.h
Go to the documentation of this file.
1 
22 /* Define to prevent recursive inclusion -------------------------------------*/
23 #ifndef __STM32F4xx_CONF_H
24 #define __STM32F4xx_CONF_H
25 
26 #if defined (HSE_VALUE)
27 /* Redefine the HSE value; it's equal to 8 MHz on the STM32F4-DISCOVERY Kit */
28  #undef HSE_VALUE
29  #define HSE_VALUE ((uint32_t)8000000)
30 #endif /* HSE_VALUE */
31 
32 /* Includes ------------------------------------------------------------------*/
33 /* Uncomment the line below to enable peripheral header file inclusion */
34 #include "stm32f4xx_adc.h"
35 //#include "stm32f4xx_can.h"
36 #include "stm32f4xx_crc.h"
37 #include "stm32f4xx_cryp.h"
38 #include "stm32f4xx_dac.h"
39 #include "stm32f4xx_dbgmcu.h"
40 #include "stm32f4xx_dcmi.h"
41 #include "stm32f4xx_dma.h"
42 #include "stm32f4xx_exti.h"
43 #include "stm32f4xx_flash.h"
44 #include "stm32f4xx_fsmc.h"
45 #include "stm32f4xx_hash.h"
46 //#include "stm32f4xx_gpio.h"
47 #include "stm32f4_gpio_af.h"
48 #include "stm32f4xx_i2c.h"
49 #include "stm32f4xx_iwdg.h"
50 #include "stm32f4xx_pwr.h"
51 #include "stm32f4xx_rcc.h"
52 #include "stm32f4xx_rng.h"
53 #include "stm32f4xx_rtc.h"
54 #include "stm32f4xx_sdio.h"
55 #include "stm32f4xx_spi.h"
56 #include "stm32f4xx_syscfg.h"
57 #include "stm32f4xx_tim.h"
58 #include "stm32f4xx_usart.h"
59 #include "stm32f4xx_wwdg.h"
60 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
61 
62 /* Exported types ------------------------------------------------------------*/
63 /* Exported constants --------------------------------------------------------*/
64 
65 /* If an external clock source is used, then the value of the following define
66  should be set to the value of the external clock source, else, if no external
67  clock is used, keep this define commented */
68 /*#define I2S_EXTERNAL_CLOCK_VAL 12288000 */ /* Value of the external clock in Hz */
69 
70 
71 /* Uncomment the line below to expanse the "assert_param" macro in the
72  Standard Peripheral Library drivers code */
73 /* #define USE_FULL_ASSERT 1 */
74 
75 /* Exported macro ------------------------------------------------------------*/
76 #ifdef USE_FULL_ASSERT
77 
86  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
87 /* Exported functions ------------------------------------------------------- */
88  void assert_failed(uint8_t* file, uint32_t line);
89 #else
90  #define assert_param(expr) ((void)0)
91 #endif /* USE_FULL_ASSERT */
92 
93 #endif /* __STM32F4xx_CONF_H */
94 
95 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/