dRonin  adbada4
dRonin firmware
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 /* Includes ------------------------------------------------------------------*/
27 /* Uncomment the line below to enable peripheral header file inclusion */
28 #include "stm32f4xx_adc.h"
29 #include "stm32f4xx_can.h"
30 #include "stm32f4xx_crc.h"
31 #include "stm32f4xx_cryp.h"
32 #include "stm32f4xx_dac.h"
33 #include "stm32f4xx_dbgmcu.h"
34 #include "stm32f4xx_dcmi.h"
35 #include "stm32f4xx_dma.h"
36 #include "stm32f4xx_exti.h"
37 #include "stm32f4xx_flash.h"
38 #include "stm32f4xx_fsmc.h"
39 #include "stm32f4xx_hash.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_rng.h"
46 #include "stm32f4xx_rtc.h"
47 #include "stm32f4xx_sdio.h"
48 #include "stm32f4xx_spi.h"
49 #include "stm32f4xx_syscfg.h"
50 #include "stm32f4xx_tim.h"
51 #include "stm32f4xx_usart.h"
52 #include "stm32f4xx_wwdg.h"
53 #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
54 
55 /* Exported types ------------------------------------------------------------*/
56 /* Exported constants --------------------------------------------------------*/
57 
58 /* If an external clock source is used, then the value of the following define
59  should be set to the value of the external clock source, else, if no external
60  clock is used, keep this define commented */
61 /*#define I2S_EXTERNAL_CLOCK_VAL 12288000 */ /* Value of the external clock in Hz */
62 
63 
64 /* Uncomment the line below to expanse the "assert_param" macro in the
65  Standard Peripheral Library drivers code */
66 /* #define USE_FULL_ASSERT 1 */
67 
68 /* Exported macro ------------------------------------------------------------*/
69 #ifdef USE_FULL_ASSERT
70 
79  #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
80 /* Exported functions ------------------------------------------------------- */
81  void assert_failed(uint8_t* file, uint32_t line);
82 #else
83  #define assert_param(expr) ((void)0)
84 #endif /* USE_FULL_ASSERT */
85 
86 #endif /* __STM32F4xx_CONF_H */
87 
88 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/