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.
 
 
 

108 lines
2.7 KiB

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