/stm32/variants/f37x/stm32f37x_conf.h

https://github.com/avikde/koduino · C Header · 83 lines · 32 code · 7 blank · 44 comment · 0 complexity · c578773d8790f2df584bedef9369b49f MD5 · raw file

  1. /**
  2. ******************************************************************************
  3. * @file ADC/ADC_BasicExample/stm32f37x_conf.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 20-September-2012
  7. * @brief Library configuration file.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT 2012 STMicroelectronics</center></h2>
  12. *
  13. * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
  14. * You may not use this file except in compliance with the License.
  15. * You may obtain a copy of the License at:
  16. *
  17. * http://www.st.com/software_license_agreement_liberty_v2
  18. *
  19. * Unless required by applicable law or agreed to in writing, software
  20. * distributed under the License is distributed on an "AS IS" BASIS,
  21. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  22. * See the License for the specific language governing permissions and
  23. * limitations under the License.
  24. *
  25. ******************************************************************************
  26. */
  27. /* Define to prevent recursive inclusion -------------------------------------*/
  28. #ifndef __STM32F37X_CONF_H
  29. #define __STM32F37X_CONF_H
  30. /* Includes ------------------------------------------------------------------*/
  31. /* Comment the line below to disable peripheral header file inclusion */
  32. #include "stm32f37x_adc.h"
  33. #include "stm32f37x_can.h"
  34. #include "stm32f37x_cec.h"
  35. #include "stm32f37x_crc.h"
  36. #include "stm32f37x_comp.h"
  37. #include "stm32f37x_dac.h"
  38. #include "stm32f37x_dbgmcu.h"
  39. #include "stm32f37x_dma.h"
  40. #include "stm32f37x_exti.h"
  41. #include "stm32f37x_flash.h"
  42. #include "stm32f37x_gpio.h"
  43. #include "stm32f37x_syscfg.h"
  44. #include "stm32f37x_i2c.h"
  45. #include "stm32f37x_iwdg.h"
  46. #include "stm32f37x_pwr.h"
  47. #include "stm32f37x_rcc.h"
  48. #include "stm32f37x_rtc.h"
  49. #include "stm32f37x_sdadc.h"
  50. #include "stm32f37x_spi.h"
  51. #include "stm32f37x_tim.h"
  52. #include "stm32f37x_usart.h"
  53. #include "stm32f37x_wwdg.h"
  54. #include "stm32f37x_misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
  55. /* Exported types ------------------------------------------------------------*/
  56. /* Exported constants --------------------------------------------------------*/
  57. /* Uncomment the line below to expanse the "assert_param" macro in the
  58. Standard Peripheral Library drivers code */
  59. /* #define USE_FULL_ASSERT 1 */
  60. /* Exported macro ------------------------------------------------------------*/
  61. #ifdef USE_FULL_ASSERT
  62. /**
  63. * @brief The assert_param macro is used for function's parameters check.
  64. * @param expr: If expr is false, it calls assert_failed function which reports
  65. * the name of the source file and the source line number of the call
  66. * that failed. If expr is true, it returns no value.
  67. * @retval None
  68. */
  69. #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
  70. /* Exported functions ------------------------------------------------------- */
  71. void assert_failed(uint8_t* file, uint32_t line);
  72. #else
  73. #define assert_param(expr) ((void)0)
  74. #endif /* USE_FULL_ASSERT */
  75. #endif /* __STM32F37X_CONF_H */
  76. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/