A1210/Core/Inc/main.h

116 lines
3.3 KiB
C

/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : main.h
* @brief : Header for main.c file.
* This file contains the common defines of the application.
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2023 STMicroelectronics.
* All rights reserved.</center></h2>
*
* 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 "stm32f4xx_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 FL_Pin GPIO_PIN_0
#define FL_GPIO_Port GPIOC
#define STD_Pin GPIO_PIN_1
#define STD_GPIO_Port GPIOC
#define SCK_Pin GPIO_PIN_2
#define SCK_GPIO_Port GPIOC
#define ON_Pin GPIO_PIN_3
#define ON_GPIO_Port GPIOC
#define OFF_Pin GPIO_PIN_2
#define OFF_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 K10_Pin GPIO_PIN_10
#define K10_GPIO_Port GPIOB
#define OK_BTN_Pin GPIO_PIN_12
#define OK_BTN_GPIO_Port GPIOB
#define DN_BTN_Pin GPIO_PIN_13
#define DN_BTN_GPIO_Port GPIOB
#define UP_BTN_Pin GPIO_PIN_14
#define UP_BTN_GPIO_Port GPIOB
#define SPI1_CS_Pin GPIO_PIN_8
#define SPI1_CS_GPIO_Port GPIOA
#define USART1_RE_Pin GPIO_PIN_11
#define USART1_RE_GPIO_Port GPIOA
#define RESET_Pin GPIO_PIN_12
#define RESET_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 A7_Pin GPIO_PIN_6
#define A7_GPIO_Port GPIOB
#define A7B7_Pin GPIO_PIN_7
#define A7B7_GPIO_Port GPIOB
#define A7B8_Pin GPIO_PIN_8
#define A7B8_GPIO_Port GPIOB
#define PZ_Pin GPIO_PIN_9
#define PZ_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****/