CARME-M4 BSP  V1.5
stm32f4xx_conf.h
1 
28 /* Define to prevent recursive inclusion -------------------------------------*/
29 #ifndef __STM32F4xx_CONF_H
30 #define __STM32F4xx_CONF_H
31 
32 /* Includes ------------------------------------------------------------------*/
33 /* Uncomment the line below to enable peripheral header file inclusion */
34 #include "stm32f4xx_adc.h"
35 #include "stm32f4xx_crc.h"
36 #include "stm32f4xx_dbgmcu.h"
37 #include "stm32f4xx_dma.h"
38 #include "stm32f4xx_exti.h"
39 #include "stm32f4xx_flash.h"
40 #include "stm32f4xx_gpio.h"
41 #include "stm32f4xx_i2c.h"
42 #include "stm32f4xx_iwdg.h"
43 #include "stm32f4xx_pwr.h"
44 #include "stm32f4xx_rcc.h"
45 #include "stm32f4xx_rtc.h"
46 #include "stm32f4xx_sdio.h"
47 #include "stm32f4xx_spi.h"
48 #include "stm32f4xx_syscfg.h"
49 #include "stm32f4xx_tim.h"
50 #include "stm32f4xx_usart.h"
51 #include "stm32f4xx_wwdg.h"
52 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
53 
54 #if defined (STM32F429_439xx)
55 #include "stm32f4xx_cryp.h"
56 #include "stm32f4xx_hash.h"
57 #include "stm32f4xx_rng.h"
58 #include "stm32f4xx_can.h"
59 #include "stm32f4xx_dac.h"
60 #include "stm32f4xx_dcmi.h"
61 #include "stm32f4xx_dma2d.h"
62 #include "stm32f4xx_fmc.h"
63 #include "stm32f4xx_ltdc.h"
64 #include "stm32f4xx_sai.h"
65 #endif /* STM32F429_439xx */
66 
67 #if defined (STM32F427_437xx)
68 #include "stm32f4xx_cryp.h"
69 #include "stm32f4xx_hash.h"
70 #include "stm32f4xx_rng.h"
71 #include "stm32f4xx_can.h"
72 #include "stm32f4xx_dac.h"
73 #include "stm32f4xx_dcmi.h"
74 #include "stm32f4xx_dma2d.h"
75 #include "stm32f4xx_fmc.h"
76 #include "stm32f4xx_sai.h"
77 #endif /* STM32F427_437xx */
78 
79 #if defined (STM32F40_41xxx)
80 #include "stm32f4xx_cryp.h"
81 #include "stm32f4xx_hash.h"
82 #include "stm32f4xx_rng.h"
83 #include "stm32f4xx_can.h"
84 #include "stm32f4xx_dac.h"
85 #include "stm32f4xx_dcmi.h"
86 #include "stm32f4xx_fsmc.h"
87 #endif /* STM32F40_41xxx */
88 
89 /* Exported types ------------------------------------------------------------*/
90 /* Exported constants --------------------------------------------------------*/
91 
92 /* If an external clock source is used, then the value of the following define
93  should be set to the value of the external clock source, else, if no external
94  clock is used, keep this define commented */
95 /*#define I2S_EXTERNAL_CLOCK_VAL 12288000 */ /* Value of the external clock in Hz */
96 
97 
98 /* Uncomment the line below to expanse the "assert_param" macro in the
99  Standard Peripheral Library drivers code */
100 /* #define USE_FULL_ASSERT 1 */
101 
102 /* Exported macro ------------------------------------------------------------*/
103 #ifdef USE_FULL_ASSERT
104 
113  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
114 /* Exported functions ------------------------------------------------------- */
115  void assert_failed(uint8_t* file, uint32_t line);
116 #else
117  #define assert_param(expr) ((void)0)
118 #endif /* USE_FULL_ASSERT */
119 
120 #endif /* __STM32F4xx_CONF_H */
121 
122 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
This file contains all the functions prototypes for the RCC firmware library.
This file contains all the functions prototypes for the GPIO firmware library.
This file contains all the functions prototypes for the DBGMCU firmware library.
This file contains all the functions prototypes for the miscellaneous firmware library functions (add...
This file contains all the functions prototypes for the CRC firmware library.
This file contains all the functions prototypes for the SPI firmware library.
This file contains all the functions prototypes for the TIM firmware library.
This file contains all the functions prototypes for the RTC firmware library.
This file contains all the functions prototypes for the PWR firmware library.
This file contains all the functions prototypes for the FLASH firmware library.
This file contains all the functions prototypes for the ADC firmware library.
This file contains all the functions prototypes for the SYSCFG firmware library.
This file contains all the functions prototypes for the DAC firmware library.
This file contains all the functions prototypes for the CAN firmware library.
This file contains all the functions prototypes for the HASH firmware library.
This file contains all the functions prototypes for the I2C firmware library.
This file contains all the functions prototypes for the DMA firmware library.
This file contains all the functions prototypes for the USART firmware library.
This file contains all the functions prototypes for the Random Number Generator(RNG) firmware library...
This file contains all the functions prototypes for the WWDG firmware library.
This file contains all the functions prototypes for the SDIO firmware library.
This file contains all the functions prototypes for the FSMC firmware library.
This file contains all the functions prototypes for the DCMI firmware library.
This file contains all the functions prototypes for the IWDG firmware library.
This file contains all the functions prototypes for the Cryptographic processor(CRYP) firmware librar...
This file contains all the functions prototypes for the EXTI firmware library.