generated from Template/H563ZI-HAL-CMake-Template
Initial commit
This commit is contained in:
128
Core/Inc/main.h
Normal file
128
Core/Inc/main.h
Normal file
@@ -0,0 +1,128 @@
|
||||
/* 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) 2025 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"
|
||||
|
||||
#include "stm32h5xx_nucleo.h"
|
||||
#include <stdio.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 */
|
||||
|
||||
/* Exported functions prototypes ---------------------------------------------*/
|
||||
void Error_Handler(void);
|
||||
|
||||
/* USER CODE BEGIN EFP */
|
||||
|
||||
/* USER CODE END EFP */
|
||||
|
||||
/* Private defines -----------------------------------------------------------*/
|
||||
#define TRACE_CK_Pin GPIO_PIN_2
|
||||
#define TRACE_CK_GPIO_Port GPIOE
|
||||
#define TRACE_D0_Pin GPIO_PIN_3
|
||||
#define TRACE_D0_GPIO_Port GPIOE
|
||||
#define TRACE_D1_Pin GPIO_PIN_4
|
||||
#define TRACE_D1_GPIO_Port GPIOE
|
||||
#define TRACE_D2_Pin GPIO_PIN_5
|
||||
#define TRACE_D2_GPIO_Port GPIOE
|
||||
#define TRACE_D3_Pin GPIO_PIN_6
|
||||
#define TRACE_D3_GPIO_Port GPIOE
|
||||
#define STLK_MCO_Pin GPIO_PIN_0
|
||||
#define STLK_MCO_GPIO_Port GPIOH
|
||||
#define RMII_MDC_Pin GPIO_PIN_1
|
||||
#define RMII_MDC_GPIO_Port GPIOC
|
||||
#define RMII_REF_CLK_Pin GPIO_PIN_1
|
||||
#define RMII_REF_CLK_GPIO_Port GPIOA
|
||||
#define RMII_MDIO_Pin GPIO_PIN_2
|
||||
#define RMII_MDIO_GPIO_Port GPIOA
|
||||
#define VBUS_SENSE_Pin GPIO_PIN_4
|
||||
#define VBUS_SENSE_GPIO_Port GPIOA
|
||||
#define RMII_CRS_DV_Pin GPIO_PIN_7
|
||||
#define RMII_CRS_DV_GPIO_Port GPIOA
|
||||
#define RMII_RXD0_Pin GPIO_PIN_4
|
||||
#define RMII_RXD0_GPIO_Port GPIOC
|
||||
#define RMII_RXD1_Pin GPIO_PIN_5
|
||||
#define RMII_RXD1_GPIO_Port GPIOC
|
||||
#define UCPD_CC1_Pin GPIO_PIN_13
|
||||
#define UCPD_CC1_GPIO_Port GPIOB
|
||||
#define UCPD_CC2_Pin GPIO_PIN_14
|
||||
#define UCPD_CC2_GPIO_Port GPIOB
|
||||
#define RMII_TXD1_Pin GPIO_PIN_15
|
||||
#define RMII_TXD1_GPIO_Port GPIOB
|
||||
#define UCPD_FLT_Pin GPIO_PIN_7
|
||||
#define UCPD_FLT_GPIO_Port GPIOG
|
||||
#define UCDP_DBn_Pin GPIO_PIN_9
|
||||
#define UCDP_DBn_GPIO_Port GPIOA
|
||||
#define USB_FS_N_Pin GPIO_PIN_11
|
||||
#define USB_FS_N_GPIO_Port GPIOA
|
||||
#define USB_FS_P_Pin GPIO_PIN_12
|
||||
#define USB_FS_P_GPIO_Port GPIOA
|
||||
#define SWDIO_Pin GPIO_PIN_13
|
||||
#define SWDIO_GPIO_Port GPIOA
|
||||
#define SWCLK_Pin GPIO_PIN_14
|
||||
#define SWCLK_GPIO_Port GPIOA
|
||||
#define T_JTDI_Pin GPIO_PIN_15
|
||||
#define T_JTDI_GPIO_Port GPIOA
|
||||
#define RMII_TXT_EN_Pin GPIO_PIN_11
|
||||
#define RMII_TXT_EN_GPIO_Port GPIOG
|
||||
#define RMI_TXD0_Pin GPIO_PIN_13
|
||||
#define RMI_TXD0_GPIO_Port GPIOG
|
||||
#define SWO_Pin GPIO_PIN_3
|
||||
#define SWO_GPIO_Port GPIOB
|
||||
#define ARD_D1_TX_Pin GPIO_PIN_6
|
||||
#define ARD_D1_TX_GPIO_Port GPIOB
|
||||
#define ARD_D0_RX_Pin GPIO_PIN_7
|
||||
#define ARD_D0_RX_GPIO_Port GPIOB
|
||||
|
||||
/* USER CODE BEGIN Private defines */
|
||||
|
||||
/* USER CODE END Private defines */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __MAIN_H */
|
||||
Reference in New Issue
Block a user