stm32f0xx_hal_msp_template.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /**
  2. ******************************************************************************
  3. * @file stm32f0xx_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. ******************************************************************************
  10. * @attention
  11. *
  12. * Copyright (c) 2016 STMicroelectronics.
  13. * All rights reserved.
  14. *
  15. * This software is licensed under terms that can be found in the LICENSE file
  16. * in the root directory of this software component.
  17. * If no LICENSE file comes with this software, it is provided AS-IS.
  18. *
  19. ******************************************************************************
  20. @verbatim
  21. ===============================================================================
  22. ##### How to use this driver #####
  23. ===============================================================================
  24. [..]
  25. @endverbatim
  26. ******************************************************************************
  27. */
  28. /* Includes ------------------------------------------------------------------*/
  29. #include "stm32f0xx_hal.h"
  30. /** @addtogroup STM32F0xx_HAL_Driver
  31. * @{
  32. */
  33. /** @defgroup HAL_MSP HAL MSP module driver
  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. */