stm32l4xx_hal_msp.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /**
  2. ******************************************************************************
  3. * File Name : stm32l4xx_hal_msp.c
  4. * Description : This file provides code for the MSP Initialization
  5. * and de-Initialization codes.
  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 "stm32l4xx_hal.h"
  41. extern void _Error_Handler(char *, int);
  42. /* USER CODE BEGIN 0 */
  43. /* USER CODE END 0 */
  44. /**
  45. * Initializes the Global MSP.
  46. */
  47. void HAL_MspInit(void)
  48. {
  49. /* USER CODE BEGIN MspInit 0 */
  50. /* USER CODE END MspInit 0 */
  51. __HAL_RCC_SYSCFG_CLK_ENABLE();
  52. __HAL_RCC_PWR_CLK_ENABLE();
  53. HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);
  54. /* System interrupt init*/
  55. /* MemoryManagement_IRQn interrupt configuration */
  56. HAL_NVIC_SetPriority(MemoryManagement_IRQn, 0, 0);
  57. /* BusFault_IRQn interrupt configuration */
  58. HAL_NVIC_SetPriority(BusFault_IRQn, 0, 0);
  59. /* UsageFault_IRQn interrupt configuration */
  60. HAL_NVIC_SetPriority(UsageFault_IRQn, 0, 0);
  61. /* SVCall_IRQn interrupt configuration */
  62. HAL_NVIC_SetPriority(SVCall_IRQn, 0, 0);
  63. /* DebugMonitor_IRQn interrupt configuration */
  64. HAL_NVIC_SetPriority(DebugMonitor_IRQn, 0, 0);
  65. /* PendSV_IRQn interrupt configuration */
  66. HAL_NVIC_SetPriority(PendSV_IRQn, 0, 0);
  67. /* SysTick_IRQn interrupt configuration */
  68. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  69. /* USER CODE BEGIN MspInit 1 */
  70. /* USER CODE END MspInit 1 */
  71. }
  72. void HAL_RTC_MspInit(RTC_HandleTypeDef* hrtc)
  73. {
  74. if(hrtc->Instance==RTC)
  75. {
  76. /* USER CODE BEGIN RTC_MspInit 0 */
  77. /* USER CODE END RTC_MspInit 0 */
  78. /* Peripheral clock enable */
  79. __HAL_RCC_RTC_ENABLE();
  80. /* USER CODE BEGIN RTC_MspInit 1 */
  81. /* USER CODE END RTC_MspInit 1 */
  82. }
  83. }
  84. void HAL_RTC_MspDeInit(RTC_HandleTypeDef* hrtc)
  85. {
  86. if(hrtc->Instance==RTC)
  87. {
  88. /* USER CODE BEGIN RTC_MspDeInit 0 */
  89. /* USER CODE END RTC_MspDeInit 0 */
  90. /* Peripheral clock disable */
  91. __HAL_RCC_RTC_DISABLE();
  92. /* USER CODE BEGIN RTC_MspDeInit 1 */
  93. /* USER CODE END RTC_MspDeInit 1 */
  94. }
  95. }
  96. void HAL_UART_MspInit(UART_HandleTypeDef* huart)
  97. {
  98. GPIO_InitTypeDef GPIO_InitStruct;
  99. if(huart->Instance==USART2)
  100. {
  101. /* USER CODE BEGIN USART2_MspInit 0 */
  102. /* USER CODE END USART2_MspInit 0 */
  103. /* Peripheral clock enable */
  104. __HAL_RCC_USART2_CLK_ENABLE();
  105. /**USART2 GPIO Configuration
  106. PA2 ------> USART2_TX
  107. PA15 (JTDI) ------> USART2_RX
  108. */
  109. GPIO_InitStruct.Pin = VCP_TX_Pin;
  110. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  111. GPIO_InitStruct.Pull = GPIO_NOPULL;
  112. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_MEDIUM;
  113. GPIO_InitStruct.Alternate = GPIO_AF7_USART2;
  114. HAL_GPIO_Init(VCP_TX_GPIO_Port, &GPIO_InitStruct);
  115. GPIO_InitStruct.Pin = VCP_RX_Pin;
  116. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  117. GPIO_InitStruct.Pull = GPIO_NOPULL;
  118. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_MEDIUM;
  119. GPIO_InitStruct.Alternate = GPIO_AF3_USART2;
  120. HAL_GPIO_Init(VCP_RX_GPIO_Port, &GPIO_InitStruct);
  121. /* USER CODE BEGIN USART2_MspInit 1 */
  122. /* USER CODE END USART2_MspInit 1 */
  123. }
  124. }
  125. void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)
  126. {
  127. if(huart->Instance==USART2)
  128. {
  129. /* USER CODE BEGIN USART2_MspDeInit 0 */
  130. /* USER CODE END USART2_MspDeInit 0 */
  131. /* Peripheral clock disable */
  132. __HAL_RCC_USART2_CLK_DISABLE();
  133. /**USART2 GPIO Configuration
  134. PA2 ------> USART2_TX
  135. PA15 (JTDI) ------> USART2_RX
  136. */
  137. HAL_GPIO_DeInit(GPIOA, VCP_TX_Pin|VCP_RX_Pin);
  138. /* USER CODE BEGIN USART2_MspDeInit 1 */
  139. /* USER CODE END USART2_MspDeInit 1 */
  140. }
  141. }
  142. /* USER CODE BEGIN 1 */
  143. /* USER CODE END 1 */
  144. /**
  145. * @}
  146. */
  147. /**
  148. * @}
  149. */
  150. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/