main.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /**
  2. ******************************************************************************
  3. * @file : main.h
  4. * @brief : Header for main.c file.
  5. * This file contains the common defines of the application.
  6. ******************************************************************************
  7. ** This notice applies to any and all portions of this file
  8. * that are not between comment pairs USER CODE BEGIN and
  9. * USER CODE END. Other portions of this file, whether
  10. * inserted by the user or by software development tools
  11. * are owned by their respective copyright owners.
  12. *
  13. * COPYRIGHT(c) 2019 STMicroelectronics
  14. *
  15. * Redistribution and use in source and binary forms, with or without modification,
  16. * are permitted provided that the following conditions are met:
  17. * 1. Redistributions of source code must retain the above copyright notice,
  18. * this list of conditions and the following disclaimer.
  19. * 2. Redistributions in binary form must reproduce the above copyright notice,
  20. * this list of conditions and the following disclaimer in the documentation
  21. * and/or other materials provided with the distribution.
  22. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  23. * may be used to endorse or promote products derived from this software
  24. * without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  29. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  32. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  33. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  34. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. ******************************************************************************
  38. */
  39. /* Define to prevent recursive inclusion -------------------------------------*/
  40. #ifndef __MAIN_H__
  41. #define __MAIN_H__
  42. /* Includes ------------------------------------------------------------------*/
  43. /* USER CODE BEGIN Includes */
  44. #define WALK_Pin GPIO_PIN_8
  45. #define WALK_GPIO_Port GPIOB
  46. #define OFF_Pin GPIO_PIN_15
  47. #define OFF_GPIO_Port GPIOA
  48. #define ECO_Pin GPIO_PIN_3
  49. #define ECO_GPIO_Port GPIOB
  50. #define NORM_Pin GPIO_PIN_4
  51. #define NORM_GPIO_Port GPIOB
  52. #define SPORT_Pin GPIO_PIN_5
  53. #define SPORT_GPIO_Port GPIOB
  54. #define TURBO_Pin GPIO_PIN_6
  55. #define TURBO_GPIO_Port GPIOB
  56. #define SMART_Pin GPIO_PIN_7
  57. #define SMART_GPIO_Port GPIOB
  58. #define VIN_EN1_Pin GPIO_PIN_1
  59. #define VIN_EN1_GPIO_Port GPIOA
  60. #define BUS_VOLTAGE_Pin GPIO_PIN_2
  61. #define BUS_VOLTAGE_GPIO_Port GPIOA
  62. #define KEY_ON_OFF_Pin GPIO_PIN_3
  63. #define KEY_ON_OFF_GPIO_Port GPIOA
  64. #define RESET_OUT_Pin GPIO_PIN_4
  65. #define RESET_OUT_GPIO_Port GPIOA
  66. #define KEY_WALK_Pin GPIO_PIN_5
  67. #define KEY_WALK_GPIO_Port GPIOA
  68. #define KEY_LIGHT_Pin GPIO_PIN_6
  69. #define KEY_LIGHT_GPIO_Port GPIOA
  70. #define KEY_SET_Pin GPIO_PIN_7
  71. #define KEY_SET_GPIO_Port GPIOA
  72. #define KEY_DOWN_Pin GPIO_PIN_0
  73. #define KEY_DOWN_GPIO_Port GPIOB
  74. #define KEY_UP_Pin GPIO_PIN_1
  75. #define KEY_UP_GPIO_Port GPIOB
  76. //#define VIN_EN2_Pin GPIO_PIN_8
  77. //#define VIN_EN2_GPIO_Port GPIOA
  78. /* USER CODE END Includes */
  79. /* Private define ------------------------------------------------------------*/
  80. /* ########################## Assert Selection ############################## */
  81. /**
  82. * @brief Uncomment the line below to expanse the "assert_param" macro in the
  83. * HAL drivers code
  84. */
  85. /* #define USE_FULL_ASSERT 1U */
  86. /* USER CODE BEGIN Private defines */
  87. extern unsigned char TimeBase_10ms;
  88. /* USER CODE END Private defines */
  89. #ifdef __cplusplus
  90. extern "C" {
  91. #endif
  92. void _Error_Handler(char *, int);
  93. #define Error_Handler() _Error_Handler(__FILE__, __LINE__)
  94. #ifdef __cplusplus
  95. }
  96. #endif
  97. #endif /* __MAIN_H__ */
  98. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/