1 ////////////////////////////////////////////////////////////////////////////////
2 /// @file     hal_conf.h
3 /// @author   AE TEAM
4 /// @brief    THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE GENERIC MICROCONTROLLER
5 ///           FIRMWARE LIBRARY.
6 ////////////////////////////////////////////////////////////////////////////////
7 /// @attention
8 ///
9 /// THE EXISTING FIRMWARE IS ONLY FOR REFERENCE, WHICH IS DESIGNED TO PROVIDE
10 /// CUSTOMERS WITH CODING INFORMATION ABOUT THEIR PRODUCTS SO THEY CAN SAVE
11 /// TIME. THEREFORE, MINDMOTION SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT OR
12 /// CONSEQUENTIAL DAMAGES ABOUT ANY CLAIMS ARISING OUT OF THE CONTENT OF SUCH
13 /// HARDWARE AND/OR THE USE OF THE CODING INFORMATION CONTAINED HEREIN IN
14 /// CONNECTION WITH PRODUCTS MADE BY CUSTOMERS.
15 ///
16 /// <H2><CENTER>&COPY; COPYRIGHT MINDMOTION </CENTER></H2>
17 ////////////////////////////////////////////////////////////////////////////////
18 
19 // Define to prevent recursive inclusion
20 #ifndef __HAL_CONF_H
21 #define __HAL_CONF_H
22 // Files includes
23 #include "mm32_device.h"
24 
25 #include "hal_adc.h"
26 #include "hal_bkp.h"
27 #include "hal_can.h"
28 #include "hal_comp.h"
29 #include "hal_crc.h"
30 #include "hal_crs.h"
31 #include "hal_dac.h"
32 #include "hal_dbg.h"
33 #include "hal_dma.h"
34 #include "hal_exti.h"
35 #include "hal_flash.h"
36 #include "hal_gpio.h"
37 #include "hal_i2c.h"
38 #include "hal_iwdg.h"
39 #include "hal_misc.h"
40 #include "hal_pwr.h"
41 #include "hal_rcc.h"
42 #include "hal_rtc.h"
43 #include "hal_spi.h"
44 #include "hal_syscfg.h"
45 #include "hal_tim.h"
46 #include "hal_uart.h"
47 #include "hal_uid.h"
48 #include "hal_wwdg.h"
49 #include "hal_redefine.h"
50 #include "hal_eth.h"
51 #include "hal_eth_conf.h"
52 #include "hal_fsmc.h"
53 
54 /// @}
55 
56 /// @}
57 
58 /// @}
59 
60 ////////////////////////////////////////////////////////////////////////////////
61 #endif //__HAL_CONF_H
62 ////////////////////////////////////////////////////////////////////////////////
63