wires/Core/Inc/main.h
2024-10-12 12:44:33 -05:00

108 lines
3.0 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
*
* Copyright (c) 2024 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 "stm32g0xx_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 LED2_Pin GPIO_PIN_13
#define LED2_GPIO_Port GPIOC
#define LED3_Pin GPIO_PIN_0
#define LED3_GPIO_Port GPIOA
#define TX_Pin GPIO_PIN_2
#define TX_GPIO_Port GPIOA
#define RX_Pin GPIO_PIN_3
#define RX_GPIO_Port GPIOA
#define WIRE8_Pin GPIO_PIN_4
#define WIRE8_GPIO_Port GPIOA
#define WIRE7_Pin GPIO_PIN_5
#define WIRE7_GPIO_Port GPIOA
#define WIRE6_Pin GPIO_PIN_6
#define WIRE6_GPIO_Port GPIOA
#define WIRE5_Pin GPIO_PIN_7
#define WIRE5_GPIO_Port GPIOA
#define WIRE4_Pin GPIO_PIN_0
#define WIRE4_GPIO_Port GPIOB
#define WIRE3_Pin GPIO_PIN_1
#define WIRE3_GPIO_Port GPIOB
#define WIRE2_Pin GPIO_PIN_2
#define WIRE2_GPIO_Port GPIOB
#define WIRE1_Pin GPIO_PIN_10
#define WIRE1_GPIO_Port GPIOB
#define RELAY1_Pin GPIO_PIN_13
#define RELAY1_GPIO_Port GPIOB
#define RELAY2_Pin GPIO_PIN_14
#define RELAY2_GPIO_Port GPIOB
#define BUZZ_Pin GPIO_PIN_15
#define BUZZ_GPIO_Port GPIOB
#define HELP_BTN_Pin GPIO_PIN_8
#define HELP_BTN_GPIO_Port GPIOA
#define INT_Pin GPIO_PIN_10
#define INT_GPIO_Port GPIOA
#define LED4_Pin GPIO_PIN_8
#define LED4_GPIO_Port GPIOB
#define LED1_Pin GPIO_PIN_9
#define LED1_GPIO_Port GPIOB
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
#ifdef __cplusplus
}
#endif
#endif /* __MAIN_H */