| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /**
- ******************************************************************************
- * @file stm32g474e_eval_conf_template.h
- * @author MCD Application Team
- * @brief STM32G474E-EVAL board configuration file.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2019 STMicroelectronics.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by ST under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef STM32G474E_EVAL_CONF_H
- #define STM32G474E_EVAL_CONF_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "stm32g4xx_hal.h"
- #include "stm32g474e_eval_errno.h"
- /** @addtogroup BSP
- * @{
- */
- /** @addtogroup STM32G474E-EVAL
- * @{
- */
- /** @defgroup STM32G474E-EVAL_CONFIG STM32G474E-EVAL CONFIG
- * @{
- */
- /** @defgroup STM32G474E-EVAL_CONFIG_Exported_Constants Exported Constants
- * @{
- */
- /* COM define */
- #define USE_BSP_COM_FEATURE 1U
- /* COM LOG define */
- #define USE_COM_LOG 0U
- /* POT define */
- #define USE_BSP_POT_FEATURE 1U
- /* COMP define :
- depends on SB8 and SB10 configuration : refer to UM */
- #define USE_BSP_POT_COMP_FEATURE 0U
- /* IO Expander define */
- #define USE_BSP_IO_CLASS 1U
- /* JOY define */
- #define USE_BSP_JOY_FEATURE 1U
- /* USBPD BSP PWR TRACE define */
- #define USE_BSP_PWR_TRACE 0U
- #if (USE_BSP_PWR_TRACE > 0u)
- #define USBPD_PWR_TRACE(_PORT_,...) UTIL_ADV_TRACE_FSend(__VA_ARGS__)
- #else
- #define USBPD_PWR_TRACE(_PORT_,...)
- #endif /* USE_BSP_PWR_TRACE */
- /* IRQ priorities */
- #define BSP_SRAM_IT_PRIORITY 15U
- #define BSP_IOEXPANDER_IT_PRIORITY 14U
- #define BSP_BUTTON_USER_IT_PRIORITY 15U
- #define BSP_AUDIO_OUT_IT_PRIORITY 13U
- #define BSP_AUDIO_IN_IT_PRIORITY 12U
- /* Audio codecs defines */
- #define USE_AUDIO_CODEC_WM8994 1U
- /* Default Audio IN internal buffer size */
- #define DEFAULT_AUDIO_IN_BUFFER_SIZE 2048U
- /* I2C3 Frequency in Hz */
- #define BUS_I2C3_FREQUENCY 100000U /* Frequency of I2C3 = 100 kHz*/
- /* SPI2 Baud rate in bps */
- #define BUS_SPI2_BAUDRATE 12500000U /* baud rate of SPIn = 12.5 Mbps */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* STM32G474E_EVAL_CONF_H */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|