stm32g0xx_hal_msp_template.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. ******************************************************************************
  3. * @file stm32g0xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @brief HAL MSP module.
  6. * This file template is located in the HAL folder and should be copied
  7. * to the user folder.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2018 STMicroelectronics.
  12. * All rights reserved.</center></h2>
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "stm32g0xx_hal.h"
  22. /** @addtogroup STM32G0xx_HAL_Driver
  23. * @{
  24. */
  25. /** @defgroup HAL_MSP HAL MSP module driver
  26. * @brief HAL MSP module.
  27. * @{
  28. */
  29. /* Private typedef -----------------------------------------------------------*/
  30. /* Private define ------------------------------------------------------------*/
  31. /* Private macro -------------------------------------------------------------*/
  32. /* Private variables ---------------------------------------------------------*/
  33. /* Private function prototypes -----------------------------------------------*/
  34. /* Private functions ---------------------------------------------------------*/
  35. /** @defgroup HAL_MSP_Private_Functions
  36. * @{
  37. */
  38. /**
  39. * @brief Initialize the Global MSP.
  40. * @retval None
  41. */
  42. void HAL_MspInit(void)
  43. {
  44. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  45. modified by the user
  46. */
  47. }
  48. /**
  49. * @brief DeInitialize the Global MSP.
  50. * @retval None
  51. */
  52. void HAL_MspDeInit(void)
  53. {
  54. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  55. modified by the user
  56. */
  57. }
  58. /**
  59. * @brief Initialize the PPP MSP.
  60. * @retval None
  61. */
  62. void HAL_PPP_MspInit(void)
  63. {
  64. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  65. modified by the user
  66. */
  67. }
  68. /**
  69. * @brief DeInitialize the PPP MSP.
  70. * @retval None
  71. */
  72. void HAL_PPP_MspDeInit(void)
  73. {
  74. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  75. modified by the user
  76. */
  77. }
  78. /**
  79. * @}
  80. */
  81. /**
  82. * @}
  83. */
  84. /**
  85. * @}
  86. */