You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

102 lines
2.4 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32h7xx_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. @verbatim
  10. ===============================================================================
  11. ##### How to use this driver #####
  12. ===============================================================================
  13. [..]
  14. @endverbatim
  15. ******************************************************************************
  16. * @attention
  17. *
  18. * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  19. * All rights reserved.</center></h2>
  20. *
  21. * This software component is licensed by ST under BSD 3-Clause license,
  22. * the "License"; You may not use this file except in compliance with the
  23. * License. You may obtain a copy of the License at:
  24. * opensource.org/licenses/BSD-3-Clause
  25. *
  26. ******************************************************************************
  27. */
  28. /* Includes ------------------------------------------------------------------*/
  29. #include "stm32h7xx_hal.h"
  30. /** @addtogroup STM32H7xx_HAL_Driver
  31. * @{
  32. */
  33. /** @defgroup HAL_MSP HAL MSP
  34. * @brief HAL MSP module.
  35. * @{
  36. */
  37. /* Private typedef -----------------------------------------------------------*/
  38. /* Private define ------------------------------------------------------------*/
  39. /* Private macro -------------------------------------------------------------*/
  40. /* Private variables ---------------------------------------------------------*/
  41. /* Private function prototypes -----------------------------------------------*/
  42. /* Private functions ---------------------------------------------------------*/
  43. /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
  44. * @{
  45. */
  46. /**
  47. * @brief Initializes the Global MSP.
  48. * @retval None
  49. */
  50. void HAL_MspInit(void)
  51. {
  52. }
  53. /**
  54. * @brief DeInitializes the Global MSP.
  55. * @retval None
  56. */
  57. void HAL_MspDeInit(void)
  58. {
  59. }
  60. /**
  61. * @brief Initializes the PPP MSP.
  62. * @retval None
  63. */
  64. void HAL_PPP_MspInit(void)
  65. {
  66. }
  67. /**
  68. * @brief DeInitializes the PPP MSP.
  69. * @retval None
  70. */
  71. void HAL_PPP_MspDeInit(void)
  72. {
  73. }
  74. /**
  75. * @}
  76. */
  77. /**
  78. * @}
  79. */
  80. /**
  81. * @}
  82. */
  83. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/