/* 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) 2021 STMicroelectronics. * All rights reserved.

* * 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 * ****************************************************************************** */ /* USER CODE END Header */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MAIN_H #define __MAIN_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32l0xx_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 */ /* Exported functions prototypes ---------------------------------------------*/ void Error_Handler(void); /* USER CODE BEGIN EFP */ /* USER CODE END EFP */ /* Private defines -----------------------------------------------------------*/ #define UPER_Pin GPIO_PIN_0 #define UPER_GPIO_Port GPIOA #define UPER_EXTI_IRQn EXTI0_1_IRQn #define OP_Pin GPIO_PIN_1 #define OP_GPIO_Port GPIOA #define OP_EXTI_IRQn EXTI0_1_IRQn #define KZ_Pin GPIO_PIN_2 #define KZ_GPIO_Port GPIOA #define KZ_EXTI_IRQn EXTI2_3_IRQn #define PER_Pin GPIO_PIN_4 #define PER_GPIO_Port GPIOA #define A0_Pin GPIO_PIN_0 #define A0_GPIO_Port GPIOB #define A1_Pin GPIO_PIN_1 #define A1_GPIO_Port GPIOB #define A2_Pin GPIO_PIN_2 #define A2_GPIO_Port GPIOB #define A10_Pin GPIO_PIN_10 #define A10_GPIO_Port GPIOB #define A11_Pin GPIO_PIN_11 #define A11_GPIO_Port GPIOB #define A12_Pin GPIO_PIN_12 #define A12_GPIO_Port GPIOB #define FL_Pin GPIO_PIN_13 #define FL_GPIO_Port GPIOB #define STD_Pin GPIO_PIN_14 #define STD_GPIO_Port GPIOB #define SCK_Pin GPIO_PIN_15 #define SCK_GPIO_Port GPIOB #define RE_Pin GPIO_PIN_8 #define RE_GPIO_Port GPIOA #define A3_Pin GPIO_PIN_3 #define A3_GPIO_Port GPIOB #define A4_Pin GPIO_PIN_4 #define A4_GPIO_Port GPIOB #define A5_Pin GPIO_PIN_5 #define A5_GPIO_Port GPIOB #define A6_Pin GPIO_PIN_6 #define A6_GPIO_Port GPIOB #define A7_Pin GPIO_PIN_7 #define A7_GPIO_Port GPIOB #define A8_Pin GPIO_PIN_8 #define A8_GPIO_Port GPIOB #define A9_Pin GPIO_PIN_9 #define A9_GPIO_Port GPIOB /* USER CODE BEGIN Private defines */ /* USER CODE END Private defines */ #ifdef __cplusplus } #endif #endif /* __MAIN_H */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/