123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* 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>© Copyright (c) 2020 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 "stm32f1xx_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 AD_DIN_Pin GPIO_PIN_0
- #define AD_DIN_GPIO_Port GPIOC
- #define AD_CS_Pin GPIO_PIN_1
- #define AD_CS_GPIO_Port GPIOC
- #define AD_CLK_Pin GPIO_PIN_2
- #define AD_CLK_GPIO_Port GPIOC
- #define pwr_Pin GPIO_PIN_5
- #define pwr_GPIO_Port GPIOC
- #define B4_Pin GPIO_PIN_12
- #define B4_GPIO_Port GPIOB
- #define B3_Pin GPIO_PIN_13
- #define B3_GPIO_Port GPIOB
- #define B2_Pin GPIO_PIN_14
- #define B2_GPIO_Port GPIOB
- #define B1_Pin GPIO_PIN_15
- #define B1_GPIO_Port GPIOB
- #define beep_Pin GPIO_PIN_6
- #define beep_GPIO_Port GPIOC
- #define led_Pin GPIO_PIN_7
- #define led_GPIO_Port GPIOC
- #define alarm_Pin GPIO_PIN_8
- #define alarm_GPIO_Port GPIOC
- #define pwr_lock_Pin GPIO_PIN_9
- #define pwr_lock_GPIO_Port GPIOC
- #define ble_c_Pin GPIO_PIN_8
- #define ble_c_GPIO_Port GPIOA
- #define output1_Pin GPIO_PIN_6
- #define output1_GPIO_Port GPIOB
- #define output2_Pin GPIO_PIN_7
- #define output2_GPIO_Port GPIOB
- #define AD_DOUT_Pin GPIO_PIN_8
- #define AD_DOUT_GPIO_Port GPIOB
- #define AD_SYNC_Pin GPIO_PIN_9
- #define AD_SYNC_GPIO_Port GPIOB
- /* USER CODE BEGIN Private defines */
- /* USER CODE END Private defines */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __MAIN_H */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|