Sliders_McGee/Core/Inc/main.h
Chris Trimble b4b958df92 V1.0 Released and sent on hardware.
Master slider and 4 channel sliders.
USB com debugging values.
DIO read but not used.
2024-06-21 12:40:46 -05:00

86 lines
2.4 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 "stm32g4xx_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 Btn_0_Pin GPIO_PIN_11
#define Btn_0_GPIO_Port GPIOB
#define Btn_1_Pin GPIO_PIN_12
#define Btn_1_GPIO_Port GPIOB
#define Btn_2_Pin GPIO_PIN_13
#define Btn_2_GPIO_Port GPIOB
#define Btn_3_Pin GPIO_PIN_14
#define Btn_3_GPIO_Port GPIOB
#define Btn_4_Pin GPIO_PIN_15
#define Btn_4_GPIO_Port GPIOB
#define Btn_5_Pin GPIO_PIN_6
#define Btn_5_GPIO_Port GPIOC
#define Btn_7_Pin GPIO_PIN_4
#define Btn_7_GPIO_Port GPIOB
#define Btn_6_Pin GPIO_PIN_5
#define Btn_6_GPIO_Port GPIOB
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
#ifdef __cplusplus
}
#endif
#endif /* __MAIN_H */