A1210/Core/Inc/main.h

123 lines
3.6 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 //STB íà ÖÀÏ
#define SCK_GPIO_Port GPIOC
#define ON_Pin GPIO_PIN_4 //Áûë3
#define ON_GPIO_Port GPIOC
#define OFF_Pin GPIO_PIN_2 //!!!! Íå ñîîòâåòñâóåò ñõåìå!!! PA3 - OFF
#define OFF_GPIO_Port GPIOA //!!!
#define A0_Pin GPIO_PIN_0 //ÊÏÐ 1 10 0,1
#define A0_GPIO_Port GPIOB
#define A1_Pin GPIO_PIN_1 //ÊÏÐ 1 10 0,1
#define A1_GPIO_Port GPIOB
#define A2_Pin GPIO_PIN_2 //ÔÂ×
#define A2_GPIO_Port GPIOB
#define K10_Pin GPIO_PIN_10 //ÊÓÑ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 //ÊÓÑ 1,2,5,10
#define A4_GPIO_Port GPIOB
#define A5_Pin GPIO_PIN_5 //ÊÓÑ 1,2,5,10
#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 PZ_Pin GPIO_PIN_9 //Ïëàâàþùàÿ çåìëÿ
#define PZ_GPIO_Port GPIOB
#define DMA_BUFFSIZE 4096
#define ADC_BUFFSIZE 8192
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
#ifdef __cplusplus
}
#endif
#endif /* __MAIN_H */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/