stm32g4xx_nucleo_conf.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. ******************************************************************************
  3. * @file stm32g4xx_nucleo_conf_template.h
  4. * @author MCD Application Team
  5. * @brief STM32G4xx_Nucleo board configuration file.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef STM32G4XX_NUCLEO_CONF_H
  21. #define STM32G4XX_NUCLEO_CONF_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32g4xx_hal.h"
  27. /** @addtogroup BSP
  28. * @{
  29. */
  30. /** @addtogroup STM32G4XX_NUCLEO
  31. * @{
  32. */
  33. /** @defgroup STM32G4XX_NUCLEO_CONFIG Config
  34. * @{
  35. */
  36. /** @defgroup STM32G4XX_NUCLEO_CONFIG_Exported_Constants Exported Constants
  37. * @{
  38. */
  39. /* Uncomment one of the board define below */
  40. /* #define USE_NUCLEO_32 */
  41. #define USE_NUCLEO_64
  42. /* COM usage define */
  43. #define USE_BSP_COM_FEATURE 0U
  44. /* COM log define */
  45. #define USE_COM_LOG 0U
  46. /* IRQ priorities */
  47. #define BSP_BUTTON_USER_IT_PRIORITY 15U
  48. /**
  49. * @}
  50. */
  51. /**
  52. * @}
  53. */
  54. /**
  55. * @}
  56. */
  57. /**
  58. * @}
  59. */
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* STM32G4XX_NUCLEO_CONF_H */
  64. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/