83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file : custom_conf.h
|
|
* @brief : Configuration file
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2022 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 CUSTOM_CONF_H
|
|
#define CUSTOM_CONF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
/** @addtogroup BSP
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup CUSTOM
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup CUSTOM_CONFIG Config
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup CUSTOM_CONFIG_Exported_Constants
|
|
* @{
|
|
*/
|
|
/* COM Feature define */
|
|
#define USE_BSP_COM_FEATURE 1U
|
|
|
|
/* COM define */
|
|
#define USE_COM_LOG 1U
|
|
|
|
/* IRQ priorities */
|
|
#define BSP_BUTTON_USER_IT_PRIORITY 15U
|
|
|
|
/* I2C1 Frequeny in Hz */
|
|
#define BUS_I2C1_FREQUENCY 100000U /* Frequency of I2C1 = 100 KHz*/
|
|
|
|
/* SPI1 Baud rate in bps */
|
|
#define BUS_SPI1_BAUDRATE 16000000U /* baud rate of SPIn = 16 Mbps */
|
|
|
|
/* UART1 Baud rate in bps */
|
|
#define BUS_UART1_BAUDRATE 9600U /* baud rate of UARTn = 9600 baud */
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* CUSTOM_CONF_H */
|
|
|