You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.1 KiB
108 lines
3.1 KiB
2 years ago
|
/* 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 "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 EN_1302_Pin GPIO_PIN_4
|
||
|
#define EN_1302_GPIO_Port GPIOE
|
||
|
#define DA_1302_Pin GPIO_PIN_5
|
||
|
#define DA_1302_GPIO_Port GPIOE
|
||
|
#define SCLK_1302_Pin GPIO_PIN_6
|
||
|
#define SCLK_1302_GPIO_Port GPIOE
|
||
|
#define PUMP_EN_Pin GPIO_PIN_0
|
||
|
#define PUMP_EN_GPIO_Port GPIOF
|
||
|
#define MAX3242_EN_Pin GPIO_PIN_4
|
||
|
#define MAX3242_EN_GPIO_Port GPIOA
|
||
|
#define SENSOR2_EN_Pin GPIO_PIN_6
|
||
|
#define SENSOR2_EN_GPIO_Port GPIOA
|
||
|
#define SENSOR4_EN_Pin GPIO_PIN_7
|
||
|
#define SENSOR4_EN_GPIO_Port GPIOA
|
||
|
#define BOOT1_Pin GPIO_PIN_2
|
||
|
#define BOOT1_GPIO_Port GPIOB
|
||
|
#define SENSOR3_EN_Pin GPIO_PIN_12
|
||
|
#define SENSOR3_EN_GPIO_Port GPIOE
|
||
|
#define DE485_Pin GPIO_PIN_13
|
||
|
#define DE485_GPIO_Port GPIOE
|
||
|
#define HDPLX_Pin GPIO_PIN_14
|
||
|
#define HDPLX_GPIO_Port GPIOE
|
||
|
#define SEL_232_485_Pin GPIO_PIN_15
|
||
|
#define SEL_232_485_GPIO_Port GPIOE
|
||
|
#define SENSOR6_EN_Pin GPIO_PIN_4
|
||
|
#define SENSOR6_EN_GPIO_Port GPIOG
|
||
|
#define R_W_Pin GPIO_PIN_5
|
||
|
#define R_W_GPIO_Port GPIOG
|
||
|
#define CDZ_Pin GPIO_PIN_15
|
||
|
#define CDZ_GPIO_Port GPIOA
|
||
|
#define ADDR_Pin GPIO_PIN_4
|
||
|
#define ADDR_GPIO_Port GPIOB
|
||
|
#define RDY_Pin GPIO_PIN_5
|
||
|
#define RDY_GPIO_Port GPIOB
|
||
|
#define LED0_Pin GPIO_PIN_0
|
||
|
#define LED0_GPIO_Port GPIOE
|
||
|
#define LED1_Pin GPIO_PIN_1
|
||
|
#define LED1_GPIO_Port GPIOE
|
||
|
|
||
|
/* USER CODE BEGIN Private defines */
|
||
|
|
||
|
/* USER CODE END Private defines */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __MAIN_H */
|