2023-12-23 22:39:11 +08:00
|
|
|
/* USER CODE BEGIN Header */
|
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file : main.h
|
|
|
|
* @brief : Header for main.c file.
|
|
|
|
* This file contains the common defines of the application.
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 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 __MAIN_H
|
|
|
|
#define __MAIN_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "stm32h5xx_hal.h"
|
|
|
|
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN ET */
|
|
|
|
|
|
|
|
/* USER CODE END ET */
|
|
|
|
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN EC */
|
|
|
|
|
|
|
|
/* USER CODE END EC */
|
|
|
|
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN EM */
|
|
|
|
|
|
|
|
/* USER CODE END EM */
|
|
|
|
|
2023-12-29 19:46:28 +08:00
|
|
|
void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim);
|
|
|
|
|
2023-12-23 22:39:11 +08:00
|
|
|
/* Exported functions prototypes ---------------------------------------------*/
|
|
|
|
void Error_Handler(void);
|
|
|
|
|
|
|
|
/* USER CODE BEGIN EFP */
|
|
|
|
|
|
|
|
/* USER CODE END EFP */
|
|
|
|
|
|
|
|
/* Private defines -----------------------------------------------------------*/
|
|
|
|
#define B1_BLUE_USER_BUTTON_Pin GPIO_PIN_13
|
|
|
|
#define B1_BLUE_USER_BUTTON_GPIO_Port GPIOC
|
|
|
|
#define T_VCP_RX_Pin GPIO_PIN_3
|
|
|
|
#define T_VCP_RX_GPIO_Port GPIOA
|
|
|
|
#define T_VCP_TX_Pin GPIO_PIN_4
|
|
|
|
#define T_VCP_TX_GPIO_Port GPIOA
|
|
|
|
#define USER_LED_Pin GPIO_PIN_5
|
|
|
|
#define USER_LED_GPIO_Port GPIOA
|
|
|
|
#define ARD_D1_TX_Pin GPIO_PIN_14
|
|
|
|
#define ARD_D1_TX_GPIO_Port GPIOB
|
|
|
|
#define ARD_D0_RX_Pin GPIO_PIN_15
|
|
|
|
#define ARD_D0_RX_GPIO_Port GPIOB
|
|
|
|
#define USB_FS_VBUS_Pin GPIO_PIN_9
|
|
|
|
#define USB_FS_VBUS_GPIO_Port GPIOA
|
|
|
|
#define USB_FS_DN_Pin GPIO_PIN_11
|
|
|
|
#define USB_FS_DN_GPIO_Port GPIOA
|
|
|
|
#define USB_FS_DP_Pin GPIO_PIN_12
|
|
|
|
#define USB_FS_DP_GPIO_Port GPIOA
|
|
|
|
#define T_SWDIO_Pin GPIO_PIN_13
|
|
|
|
#define T_SWDIO_GPIO_Port GPIOA
|
|
|
|
#define T_SWCLK_Pin GPIO_PIN_14
|
|
|
|
#define T_SWCLK_GPIO_Port GPIOA
|
|
|
|
#define T_JTDI_Pin GPIO_PIN_15
|
|
|
|
#define T_JTDI_GPIO_Port GPIOA
|
|
|
|
#define USB_FS_PWR_EN_Pin GPIO_PIN_10
|
|
|
|
#define USB_FS_PWR_EN_GPIO_Port GPIOC
|
|
|
|
#define USB_FS_OVCR_Pin GPIO_PIN_2
|
|
|
|
#define USB_FS_OVCR_GPIO_Port GPIOD
|
|
|
|
#define T_SWO_Pin GPIO_PIN_3
|
|
|
|
#define T_SWO_GPIO_Port GPIOB
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __MAIN_H */
|