Initial commit

This commit is contained in:
2022-10-20 17:33:01 +03:00
commit 2a0ec99262
305 changed files with 767720 additions and 0 deletions

82
firmware/Core/Inc/main.h Normal file
View File

@@ -0,0 +1,82 @@
/* 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) 2022 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 */
void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim);
/* Exported functions prototypes ---------------------------------------------*/
void Error_Handler(void);
/* USER CODE BEGIN EFP */
/* USER CODE END EFP */
/* Private defines -----------------------------------------------------------*/
#define Btn_INT_Pin GPIO_PIN_0
#define Btn_INT_GPIO_Port GPIOA
#define Btn_INT_EXTI_IRQn EXTI0_1_IRQn
#define Sens_SHUT_Pin GPIO_PIN_4
#define Sens_SHUT_GPIO_Port GPIOB
#define Sens_INT_Pin GPIO_PIN_5
#define Sens_INT_GPIO_Port GPIOB
#define Sens_INT_EXTI_IRQn EXTI4_15_IRQn
#define Sens_SCL_Pin GPIO_PIN_6
#define Sens_SCL_GPIO_Port GPIOB
#define Sens_SDA_Pin GPIO_PIN_7
#define Sens_SDA_GPIO_Port GPIOB
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
#ifdef __cplusplus
}
#endif
#endif /* __MAIN_H */