gpio.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /**
  2. ******************************************************************************
  3. * File Name : gpio.c
  4. * Description : This file provides code for the configuration
  5. * of all used GPIO pins.
  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. /* Includes ------------------------------------------------------------------*/
  40. #include "gpio.h"
  41. /* USER CODE BEGIN 0 */
  42. /* USER CODE END 0 */
  43. /*----------------------------------------------------------------------------*/
  44. /* Configure GPIO */
  45. /*----------------------------------------------------------------------------*/
  46. /* USER CODE BEGIN 1 */
  47. /* USER CODE END 1 */
  48. /** Configure pins as
  49. * Analog
  50. * Input
  51. * Output
  52. * EVENT_OUT
  53. * EXTI
  54. */
  55. void MX_GPIO_Init(void)
  56. {
  57. GPIO_InitTypeDef GPIO_InitStruct;
  58. /* GPIO Ports Clock Enable */
  59. __HAL_RCC_GPIOD_CLK_ENABLE();
  60. __HAL_RCC_GPIOA_CLK_ENABLE();
  61. __HAL_RCC_GPIOB_CLK_ENABLE();
  62. /*Configure GPIO pin Output Level */
  63. HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1|GPIO_PIN_4, GPIO_PIN_RESET);
  64. HAL_GPIO_WritePin(GPIOA, GPIO_PIN_15, GPIO_PIN_SET);
  65. /*Configure GPIO pin Output Level */
  66. HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_6
  67. |GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10
  68. |GPIO_PIN_11|GPIO_PIN_12|GPIO_PIN_15, GPIO_PIN_SET);
  69. /*Configure GPIO pins : PA1 PA4 PA15 */
  70. GPIO_InitStruct.Pin = GPIO_PIN_1|GPIO_PIN_4|GPIO_PIN_15;
  71. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  72. GPIO_InitStruct.Pull = GPIO_NOPULL;
  73. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  74. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  75. /*Configure GPIO pins : PB3 PB4 PB5 PB6 PB7 PB8 PB9
  76. PB10 PB11 PB12 PB15*/
  77. GPIO_InitStruct.Pin = GPIO_PIN_3|GPIO_PIN_4|GPIO_PIN_5|GPIO_PIN_6
  78. |GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10
  79. |GPIO_PIN_11|GPIO_PIN_12|GPIO_PIN_15;
  80. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  81. GPIO_InitStruct.Pull = GPIO_NOPULL;
  82. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  83. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  84. }
  85. /* USER CODE BEGIN 2 */
  86. /* USER CODE END 2 */
  87. /**
  88. * @}
  89. */
  90. /**
  91. * @}
  92. */
  93. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/