106 lines
2.3 KiB
C
106 lines
2.3 KiB
C
|
/* USER CODE BEGIN Header */
|
||
|
/**
|
||
|
******************************************************************************
|
||
|
* @file stm32wlxx_nucleo_conf.h
|
||
|
* @author MCD Application Team
|
||
|
* @brief STM32WLxx_Nucleo board configuration file.
|
||
|
******************************************************************************
|
||
|
* @attention
|
||
|
*
|
||
|
* Copyright (c) 2021 STMicroelectronics.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is licensed under terms that can be found in the LICENSE file
|
||
|
* in the root directory of this software component.
|
||
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
||
|
*
|
||
|
******************************************************************************
|
||
|
*/
|
||
|
/* USER CODE END Header */
|
||
|
|
||
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
#ifndef STM32WLXX_NUCLEO_CONF_H
|
||
|
#define STM32WLXX_NUCLEO_CONF_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Includes ------------------------------------------------------------------*/
|
||
|
#include "stm32wlxx_hal.h"
|
||
|
|
||
|
/* USER CODE BEGIN Includes */
|
||
|
|
||
|
/* USER CODE END Includes */
|
||
|
|
||
|
/* Exported types ------------------------------------------------------------*/
|
||
|
/* USER CODE BEGIN ET */
|
||
|
|
||
|
/* USER CODE END ET */
|
||
|
|
||
|
/* Exported constants --------------------------------------------------------*/
|
||
|
/** @addtogroup BSP
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/** @addtogroup STM32WLXX_NUCLEO
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/** @defgroup STM32WLXX_NUCLEO_CONFIG CONFIG
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/** @defgroup STM32WLXX_NUCLEO_CONFIG_Exported_Constants Exported Constants
|
||
|
* @{
|
||
|
*/
|
||
|
/* COM usage define */
|
||
|
#define USE_BSP_COM_FEATURE 0U
|
||
|
|
||
|
/* COM log define */
|
||
|
#define USE_COM_LOG 0U
|
||
|
|
||
|
/* IRQ priorities */
|
||
|
#define BSP_BUTTON_USER_IT_PRIORITY 14U
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
/* USER CODE BEGIN EC */
|
||
|
|
||
|
/* USER CODE END EC */
|
||
|
|
||
|
/* External variables --------------------------------------------------------*/
|
||
|
/* USER CODE BEGIN EV */
|
||
|
|
||
|
/* USER CODE END EV */
|
||
|
|
||
|
/* Exported macro ------------------------------------------------------------*/
|
||
|
/* USER CODE BEGIN EM */
|
||
|
|
||
|
/* USER CODE END EM */
|
||
|
|
||
|
/* Exported functions prototypes ---------------------------------------------*/
|
||
|
/* USER CODE BEGIN EFP */
|
||
|
|
||
|
/* USER CODE END EFP */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* STM32WLXX_NUCLEO_CONF_H */
|