stm32g4xx_hal_msp_template.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**
  2. ******************************************************************************
  3. * @file stm32g4xx_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) 2019 STMicroelectronics.
  12. * All rights reserved.
  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 "stm32g4xx_hal.h"
  22. /** @addtogroup STM32G4xx_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. * @param None
  41. * @retval None
  42. */
  43. void HAL_MspInit(void)
  44. {
  45. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  46. modified by the user
  47. */
  48. }
  49. /**
  50. * @brief DeInitialize the Global MSP.
  51. * @param None
  52. * @retval None
  53. */
  54. void HAL_MspDeInit(void)
  55. {
  56. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  57. modified by the user
  58. */
  59. }
  60. /**
  61. * @brief Initialize the PPP MSP.
  62. * @param None
  63. * @retval None
  64. */
  65. void HAL_PPP_MspInit(void)
  66. {
  67. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  68. modified by the user
  69. */
  70. }
  71. /**
  72. * @brief DeInitialize the PPP MSP.
  73. * @param None
  74. * @retval None
  75. */
  76. void HAL_PPP_MspDeInit(void)
  77. {
  78. /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  79. modified by the user
  80. */
  81. }
  82. /**
  83. * @}
  84. */
  85. /**
  86. * @}
  87. */
  88. /**
  89. * @}
  90. */