hal_conf.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. // Define to prevent recursive inclusion
  19. #ifndef __HAL_CONF_H
  20. #define __HAL_CONF_H
  21. // Files includes
  22. #include "mm32_device.h"
  23. #include "hal_adc.h"
  24. #include "hal_bkp.h"
  25. #include "hal_can.h"
  26. #include "hal_comp.h"
  27. #include "hal_crc.h"
  28. #include "hal_crs.h"
  29. #include "hal_dac.h"
  30. #include "hal_dbg.h"
  31. #include "hal_dma.h"
  32. #include "hal_exti.h"
  33. #include "hal_flash.h"
  34. #include "hal_gpio.h"
  35. #include "hal_i2c.h"
  36. #include "hal_iwdg.h"
  37. #include "hal_misc.h"
  38. #include "hal_pwr.h"
  39. #include "hal_rcc.h"
  40. #include "hal_rtc.h"
  41. #include "hal_spi.h"
  42. #include "hal_syscfg.h"
  43. #include "hal_tim.h"
  44. #include "hal_uart.h"
  45. #include "hal_uid.h"
  46. #include "hal_wwdg.h"
  47. #include "hal_redefine.h"
  48. #include "hal_eth.h"
  49. #include "hal_eth_conf.h"
  50. #include "hal_fsmc.h"
  51. /// @}
  52. /// @}
  53. /// @}
  54. ////////////////////////////////////////////////////////////////////////////////
  55. #endif //__HAL_CONF_H
  56. ////////////////////////////////////////////////////////////////////////////////