gpio.h 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /**
  2. ******************************************************************************
  3. * File Name : gpio.h
  4. * Description : This file contains all the functions prototypes for
  5. * the gpio
  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 __gpio_H
  41. #define __gpio_H
  42. #ifdef __cplusplus
  43. extern "C" {
  44. #endif
  45. /* Includes ------------------------------------------------------------------*/
  46. #include "stm32f1xx_hal.h"
  47. #include "main.h"
  48. /* USER CODE BEGIN Includes */
  49. #include "battery_display.h"
  50. /* USER CODE END Includes */
  51. /* USER CODE BEGIN Private defines */
  52. #define SYS_POWER_ON() {HAL_GPIO_WritePin(VIN_EN1_GPIO_Port, VIN_EN1_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(GPIOB, GPIO_PIN_9, GPIO_PIN_RESET);}
  53. #define SYS_POWER_OFF() {HAL_GPIO_WritePin(VIN_EN1_GPIO_Port, VIN_EN1_Pin, GPIO_PIN_RESET);HAL_GPIO_WritePin(GPIOB, GPIO_PIN_9, GPIO_PIN_SET);}
  54. #define LED_INIT() {HAL_GPIO_WritePin(OFF_GPIO_Port, OFF_Pin, GPIO_PIN_SET);\
  55. HAL_GPIO_WritePin(ECO_GPIO_Port, ECO_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(NORM_GPIO_Port, NORM_Pin, GPIO_PIN_SET);\
  56. HAL_GPIO_WritePin(SPORT_GPIO_Port, SPORT_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(TURBO_GPIO_Port, TURBO_Pin, GPIO_PIN_SET);\
  57. HAL_GPIO_WritePin(SMART_GPIO_Port, SMART_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(WALK_GPIO_Port, WALK_Pin, GPIO_PIN_SET);}
  58. #define LED_INIT_GearSt() {HAL_GPIO_WritePin(OFF_GPIO_Port, OFF_Pin, GPIO_PIN_SET);\
  59. HAL_GPIO_WritePin(ECO_GPIO_Port, ECO_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(NORM_GPIO_Port, NORM_Pin, GPIO_PIN_SET);\
  60. HAL_GPIO_WritePin(SPORT_GPIO_Port, SPORT_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(TURBO_GPIO_Port, TURBO_Pin, GPIO_PIN_SET);\
  61. HAL_GPIO_WritePin(SMART_GPIO_Port, SMART_Pin, GPIO_PIN_SET);}
  62. #define LED_INIT_ALL() {HAL_GPIO_WritePin(OFF_GPIO_Port, OFF_Pin, GPIO_PIN_SET);\
  63. HAL_GPIO_WritePin(ECO_GPIO_Port, ECO_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(NORM_GPIO_Port, NORM_Pin, GPIO_PIN_SET);\
  64. HAL_GPIO_WritePin(SPORT_GPIO_Port, SPORT_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(TURBO_GPIO_Port, TURBO_Pin, GPIO_PIN_SET);\
  65. HAL_GPIO_WritePin(SMART_GPIO_Port, SMART_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(WALK_GPIO_Port, WALK_Pin, GPIO_PIN_SET);\
  66. HAL_GPIO_WritePin(ONE_GPIO_Port, ONE_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(TWO_GPIO_Port, TWO_Pin, GPIO_PIN_SET);\
  67. HAL_GPIO_WritePin(THREE_GPIO_Port, THREE_Pin, GPIO_PIN_SET);HAL_GPIO_WritePin(FOUR_GPIO_Port, FOUR_Pin, GPIO_PIN_SET);}
  68. /* USER CODE END Private defines */
  69. void MX_GPIO_Init(void);
  70. /* USER CODE BEGIN Prototypes */
  71. /* USER CODE END Prototypes */
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75. #endif /*__ pinoutConfig_H */
  76. /**
  77. * @}
  78. */
  79. /**
  80. * @}
  81. */
  82. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/