gpio.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. #include "uart_process.h"
  42. /* USER CODE BEGIN 0 */
  43. /* USER CODE END 0 */
  44. /*----------------------------------------------------------------------------*/
  45. /* Configure GPIO */
  46. /*----------------------------------------------------------------------------*/
  47. /* USER CODE BEGIN 1 */
  48. Led_Display_Struct_t Led_MCU = {LED_MCU_GPIO_Port, LED_MCU_Pin, 0, RESET};
  49. Led_Display_Struct_t Led_COM = {LED_Display_GPIO_Port, LED_Display_Pin, 0, RESET};
  50. /* USER CODE END 1 */
  51. /** Configure pins as
  52. * Analog
  53. * Input
  54. * Output
  55. * EVENT_OUT
  56. * EXTI
  57. */
  58. void MX_GPIO_Init(void)
  59. {
  60. GPIO_InitTypeDef GPIO_InitStruct;
  61. /* GPIO Ports Clock Enable */
  62. __HAL_RCC_GPIOD_CLK_ENABLE();
  63. __HAL_RCC_GPIOA_CLK_ENABLE();
  64. __HAL_RCC_GPIOB_CLK_ENABLE();
  65. /*Configure GPIO pin Output Level */
  66. HAL_GPIO_WritePin(GPIOA, PowerSwitch_Pin, GPIO_PIN_RESET);
  67. // HAL_GPIO_WritePin(GPIOA, SwitchOnOrOff_Pin, GPIO_PIN_RESET);
  68. HAL_GPIO_WritePin(GPIOA, ACC_MOTINOVA_EN_Pin, GPIO_PIN_RESET);
  69. /*Configure GPIO pin Output Level */
  70. HAL_GPIO_WritePin(GPIOB, LED_MCU_Pin|LED_Display_Pin|ACC_WELLING_EN_Pin, GPIO_PIN_RESET);
  71. /*Configure GPIO pins : PAPin PAPin */
  72. GPIO_InitStruct.Pin = PowerSwitch_Pin|ACC_MOTINOVA_EN_Pin;
  73. // GPIO_InitStruct.Pin = PowerSwitch_Pin|SwitchOnOrOff_Pin|ACC_MOTINOVA_EN_Pin;
  74. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  75. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  76. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  77. /*Configure GPIO pins : PBPin PBPin */
  78. GPIO_InitStruct.Pin = LED_MCU_Pin|LED_Display_Pin|ACC_WELLING_EN_Pin;
  79. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  80. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  81. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  82. // __HAL_RCC_AFIO_CLK_ENABLE();
  83. // __HAL_AFIO_REMAP_SWJ_NOJTAG();
  84. GPIO_InitStruct.Pin = CommSwitch_Pin1|CommSwitch_Pin2;
  85. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  86. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  87. HAL_GPIO_Init(CommSwitch_GPIO_Port, &GPIO_InitStruct);
  88. if(Transmit_UARTOrCAN == 2)
  89. {
  90. HAL_Delay(100);
  91. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin1, GPIO_PIN_SET);
  92. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin2, GPIO_PIN_SET);
  93. }
  94. else
  95. {
  96. HAL_Delay(100);
  97. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin1, GPIO_PIN_RESET);
  98. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin2, GPIO_PIN_RESET);
  99. }
  100. /* BautrateSwitch_GPIO: PA10*/
  101. /*GPIO_InitStruct.Pin = BautrateSwitch_Pin;
  102. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  103. GPIO_InitStruct.Pull = GPIO_PULLUP;
  104. HAL_GPIO_Init(BautrateSwitch_GPIO_Port, &GPIO_InitStruct);*/
  105. }
  106. /* USER CODE BEGIN 2 */
  107. void LED_Run(Led_Display_Struct_t* Led, uint16_t Period)
  108. {
  109. if((HAL_GetTick() - Led->Period) > Period)
  110. {
  111. HAL_GPIO_TogglePin(Led->GPIOx, Led->GPIO_Pin);
  112. Led->Period = HAL_GetTick();
  113. }
  114. }
  115. /* BautrateSwitch Check */
  116. uint8_t KeyCheck(void)
  117. {
  118. static GPIO_PinState Pin_Statut_Old = GPIO_PIN_SET;
  119. static uint32_t DelayCnt = 0;
  120. static TrueOrFalse_Flag_Struct_t Trig = FALSE;
  121. GPIO_PinState Pin_Statut_Pre;
  122. if(HAL_GetTick() < 3000)
  123. {
  124. Pin_Statut_Pre = HAL_GPIO_ReadPin(BautrateSwitch_GPIO_Port, BautrateSwitch_Pin);
  125. Pin_Statut_Old = Pin_Statut_Pre;
  126. DelayCnt = HAL_GetTick();
  127. return 0;
  128. }
  129. Pin_Statut_Pre = HAL_GPIO_ReadPin(BautrateSwitch_GPIO_Port, BautrateSwitch_Pin);
  130. if(Pin_Statut_Pre == Pin_Statut_Old)
  131. {
  132. if(Trig == FALSE)
  133. DelayCnt = HAL_GetTick();
  134. }
  135. else
  136. {
  137. Trig = TRUE;
  138. }
  139. if((HAL_GetTick() - DelayCnt) > 1000)
  140. {
  141. Trig = FALSE;
  142. return 1;
  143. }
  144. Pin_Statut_Old = Pin_Statut_Pre;
  145. return 0;
  146. }
  147. /* USER CODE END 2 */
  148. /**
  149. * @}
  150. */
  151. /**
  152. * @}
  153. */
  154. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/