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.6 KiB

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